sam291091
3rd February 2014, 13:39
Hello ,

What is SOAP? How to used SOAP & Where it is Used ?

bhushanchanda
3rd February 2014, 14:04
Hi,

Refer Prog. Guide:-

SOAP, originally defined as Simple Object Access Protocol, is a protocol specification for exchanging structured information in the implementation of Web Services in computer networks. It relies on eXtensible Markup Language (XML) as its message format, and usually relies on other Application Layer protocols (most notably Remote Procedure Call (RPC) and HTTP) for message negotiation and transmission. SOAP can form the foundation layer of a web services protocol stack, providing a basic messaging framework upon which web services can be built. This XML based protocol consists of three parts: an envelope - which defines what is in the message and how to process it - a set of encoding rules for expressing instances of application-defined datatypes, and a convention for representing procedure calls and responses.

As a layman's example of how SOAP procedures can be used, a SOAP message could be sent to a web-service-enabled web site (for example, a house price database) with the parameters needed for a search. The site would then return an XML-formatted document with the resulting data (prices, location, features, etc). Because the data is returned in a standardized machine-parseable format, it could then be integrated directly into a third-party site.

For example:-

I have developed a Currency Converter (http://www.baanboard.com/baanboard/showthread.php?t=64167) using Soap.

sam291091
4th February 2014, 05:32
Hi,

Refer Prog. Guide:-



For example:-

I have developed a Currency Converter (http://www.baanboard.com/baanboard/showthread.php?t=64167) using Soap.

Thank You........