Thursday, May 13, 2010

Short Message peer to peer protocol (SMPP)

The Short Message Peer to Peer (SMPP) protocol is an open industry standard messaging protocol designed to simplify integration of data applications with wireless mobile networks such as GSM, TDMA, CDMA and PDC. The protocol is widely deployed in the mobile telecommunications industry. The SMPP protocol specification is freely available from the Documents section of this site. With SMPP you can as an application developer send data to mobile devices or to the other applications over SMSC (Short Messasge Service Centre).

The short message peer-to-peer protocol was initially designed and developed by an Irish company called Aldiscon and is now owned by LogicaCMG plc.

The short message peer-to-peer protocol is based on pairs of request/response packets or binary encoded packets PDUs (protocol data units) exchanged over OSI transport layer (TCP session) connections.

Friday, May 7, 2010

Web Services Description Language (WSDL)

used in the web services.

GUI Interface using batch file



today I have create GUI Interface using batch file.I have attach sample code for your reusage.

====Sample code====

@ECHO off
echo msgbox"Task Complete Successful">a.vbs&a.vbs&del a.vbs

Simple Object Access Protocol (SOAP)



SOAP stands for Simple Object Access Protocol used to create a format for sending messages .It's platform and language independent

SOAP is based on XML

SOAP provides a way to communicate between applications running on different operating systems, with different technologies and programming languages.

Syntax Rules

Here are some important syntax rules which must contains in SOAP message:

A SOAP message Must be encoded using XML ,Must use the SOAP Envelope namespace ,must use the SOAP Encoding namespace ,must NOT contain a DTD reference,must NOT contain XML Processing Instructions

In the above diagram display the simple format of SOAP message.

Thursday, May 6, 2010

Web Services in Nutshell

Web services are services ,usually including some combination of programming and data, but possibly including human resources as well.
These services are made available from a business's Web server for Web users or other Web-connected programs.

Providers of Web services are generally known as application service providers.

Users can access some Web services through a peer-to-peer arrangement.

Some services can communicate with other services and this exchange of procedures and data is generally enabled by a class of software known as middleware.


The basic Web services platform is XML + HTTP.

XML provides a language which can be used between different platforms and programming languages and still express complex messages and functions.

The HTTP protocol is the most used Internet protocol.


Web services platform elements:

SOAP (Simple Object Access Protocol)
UDDI (Universal Description, Discovery and Integration)
WSDL (Web Services Description Language)


XML is used to tag the data,
SOAP is used to transfer the data,
WSDL is used for describing the services available
UDDI is used for listing what services are available.


Web services allow organizations to communicate data without intimate knowledge of each other's IT systems behind the firewall.

Unlike traditional client/server models, such as a Web server/Web page system, Web services do not provide the user with a GUI. Web services instead share business logic, data and processes through a programmatic interface across a network. The applications interface, not the users. Developers can then add the Web service to a GUI (such as a Web page or an executable program) to offer specific functionality to users.


Web services allow different applications from different sources to communicate with each other without time-consuming custom coding, and because all communication is in XML, Web services are not tied to any one operating system or programming language. For example, Java can talk with Perl, Windows applications can talk with UNIX applications.