SOAP

SOAP

SOAP (see below for name and origins) is a protocol for exchanging XML-based messages over computer networks, normally using HTTP/HTTPS. SOAP forms the foundation layer of the web services protocol stack providing a basic messaging framework upon which abstract layers can be built.

As a layman's example of how SOAP procedures can be used, a correctly formatted call could be sent to a Web Service enabled web site - for example, a house price database - with the data ranges needed for a search. The site could then return a formatted XML document with all the required results and associated data (prices, location, features, etc). These could then be integrated directly into a third-party site.

There are several different types of messaging patterns in SOAP, but by far the most common is the Remote Procedure Call (RPC) pattern, in which one network node (the "client") sends a request message to another node (the "server") and the server immediately sends a response message to the client. SOAP is the successor of XML-RPC, though it borrows its transport and interaction neutrality and the envelope/header/body from elsewhere, probably from WDDX.Fact|date=February 2007

History

SOAP once stood for 'Simple Object Access Protocol' but this acronym was dropped with Version 1.2 of the standard, as it was considered to be misleading. Version 1.2 became a W3C Recommendation on June 24 2003. The acronym is sometimes confused with SOA, or Service-oriented architecture; however SOAP is quite different from SOA.

SOAP was originally designed by Dave Winer, Don Box, Bob Atkinson, and Mohsen Al-Ghosein in 1998, with backing from Microsoft (where Atkinson and Al-Ghosein worked at the time), as an object-access protocol. The [http://www.w3.org/TR/soap/ SOAP specification] is currently maintained by the [http://www.w3.org/2000/xp/Group/ XML Protocol Working Group] of the World Wide Web Consortium.

Transport methods

SOAP makes use of an Internet application layer protocol as a transport protocol. Critics have argued that this is an abuse of such protocols, as it is not their intended purpose and therefore not a role they fulfill well. Backers of SOAP have drawn analogies to successful uses of protocols at various levels for tunneling other protocols. Fact|date=February 2007

Both SMTP and HTTP are valid application layer protocols used as Transport for SOAP, but HTTP has gained wider acceptance as it works well with today's Internet infrastructure; specifically, HTTP works well with network firewalls. SOAP may also be used over HTTPS (which is the same protocol as HTTP at the application level, but uses an encrypted transport protocol underneath) in either simple or mutual authentication; this is the advocated WS-I method to provide web service security as stated in the WS-I Basic Profile 1.1. This is a major advantage over other distributed protocols like GIOP/IIOP or DCOM which are normally filtered by firewalls. XML was chosen as the standard message format because of its widespread use by major corporations and open source development efforts. Additionally, a wide variety of freely available tools significantly eases the transition to a SOAP-based implementation.

The somewhat lengthy syntax of XML can be both a benefit and a drawback. While it promotes readability for humans, facilitates error detection, and avoids interoperability problems such as byte-order (Endianness), it can retard processing speed and be cumbersome. For example, CORBA, GIOP, ICE, and DCOM use much shorter, binary message formats. On the other hand, hardware appliances are available to accelerate processing of XML messages. [ [http://www-306.ibm.com/software/integration/datapower/xa35/ IBM Datapower] ] [ [http://www.research.ibm.com/XML/IBM_Zurich_XML_Accelerator_Engine_paper_2004May04.pdf IBM Zurich XML Accelerator Engine] ] Binary XML is also being explored as a means for streamlining the throughput requirements of XML.

Technical critique

Numerous commentators and specialists have discussed the technical advantages and disadvantages of SOAP relative to alternative technologies, and relative to the context of its intended use.

Advantages

* Using SOAP over HTTP allows for easier communication through proxies and firewalls than previous remote execution technology.
* SOAP is versatile enough to allow for the use of different transport protocols. The standard stacks use HTTP as a transport protocol, but other protocols are also usable (e.g., SMTP).
* SOAP is platform independent.
* SOAP is language independent.
* SOAP is simple and extensible.

Disadvantages

* Because of the verbose XML format, SOAP can be considerably slower than competing middleware technologies such as CORBA. This may not be an issue when only small messages are sent. [ [http://www-128.ibm.com/developerworks/library/ws-pyth9/ IBM Developer works] ] To improve performance for the special case of XML with embedded binary objects, Message Transmission Optimization Mechanism was introduced. Further, to improve the performance of XML in general, there are emerging non-extractive XML processing models, e.g., VTD-XML.
* When relying on HTTP as a transport protocol and not using WS-Addressing or an ESB, the roles of the interacting parties are fixed. Only one party (the client) can use the services of the other. Developers must use polling instead of notification in these common cases.
* Most uses of HTTP as a transport protocol are done in ignorance of how the operation would be modelled in HTTPFact|date=July 2008. This is by design (with analogy to how different protocols sit on top of each other in the IP stack) but the analogy is imperfect (because the application protocols used as transport protocols are not really transport protocols). Because of this, there is no way to know if the method used is appropriate to the operation. This makes good analysis of the operation at the application-protocol level problematic at best with results that are sub-optimal (if the POST-based binding is used for an application which in HTTP would be more naturally modelled as a GET operation).
* Because SOAP uses HTTP, a firewall designed to only allow web browsing cannot simply allow all HTTP-using packets; instead it has to perform more detailed (and thus less efficient) packet analysis.

ee also

*SOAP with Attachments
*SOAP with Attachments API for Java
* [http://soa.sys-con.com/read/523481.htm SOAP Over JMS Interoperability]
*Web Services Description Language (WSDL)
*Extensible User Interface Protocol(XUP) a SOAP based UI protocol

References

External links

* [http://www.w3.org/TR/soap/ W3C SOAP page]
* [http://www.w3.org/TR/soap12/ SOAP Version 1.2 specification]
* [http://www.w3schools.com/soap/default.asp SOAP Tutorial]
* [http://www.usher.com.pl/how-to-workaround-php-soapclient-bug-when-connecting-over-ssl A workaround for SOAP bug in PHP]


Wikimedia Foundation. 2010.

Игры ⚽ Нужна курсовая?

Look at other dictionaries:

  • SOAP — im TCP/IP‑Protokollstapel: Anwendung SOAP HTTP HTTPS … Transport TCP Internet IP (IPv4, IPv6) …   Deutsch Wikipedia

  • Soap — Soap, n. [OE. sope, AS. s[=a]pe; akin to D. zeep, G. seife, OHG. seifa, Icel. s[=a]pa, Sw. s?pa, Dan. s?be, and perhaps to AS. s[=i]pan to drip, MHG. s[=i]fen, and L. sebum tallow. Cf. {Saponaceous}.] A substance which dissolves in water, thus… …   The Collaborative International Dictionary of English

  • SOAP — Saltar a navegación, búsqueda SOAP estructura SOAP (siglas de Simple Object Access Protocol) es un protocolo estándar que define cómo dos objetos en diferentes procesos pueden comunicarse por medio de intercambio de datos XML. Este protocolo… …   Wikipedia Español

  • Soap — протокол обмена структурированными сообщениями в распределённой вычислительной среде. Первоначально SOAP предназначался, в основном, для реализации удалённого вызова процедур (RPC), а название было аббревиатурой: Simple Object Access Protocol … …   Википедия

  • soap — soap; soap·berry; Soap; soap·er; soap·ery; soap·i·ly; soap·i·ness; soap·less; soap·box·er; …   English syllables

  • soap´i|ly — soap|y «SOH pee», adjective, soap|i|er, soap|i|est. 1. covered with soap or soapsuds. 2. containing soap: »soapy water. 3. o …   Useful english dictionary

  • soap|y — «SOH pee», adjective, soap|i|er, soap|i|est. 1. covered with soap or soapsuds. 2. containing soap: »soapy water. 3. o …   Useful english dictionary

  • Soap — – Trautes Heim (Alternativtitel: Die Ausgeflippten) ist eine US amerikanische Comedy Serie, die zwischen 1977 und 1981 in den USA vom Fernsehsender ABC produziert wurde. Geschaffen wurde Soap von Susan Harris, die später auch den Ableger Benson… …   Deutsch Wikipedia

  • Soap — 〈[ soʊp] f. 10; Radio, TV; umg.; kurz für〉 Soapopera * * * Soap [soʊp ], die; , s: Kurzf. von ↑ Soap Opera. * * * SOAP   [Abk. für Simple …   Universal-Lexikon

  • soap — opéra [ sopɔpera ] n. m. • 1981; mot angl. , de soap « savon » et opera, ces feuilletons étant à l origine produits par les lessiviers ♦ Anglic. Feuilleton télévisé populaire, tourné rapidement. Les soap opéras. Abrév. fam. SOAP . Les soaps… …   Encyclopédie Universelle

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”