Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

SOAP

From Wikipedia, the free encyclopedia
Messaging protocol for web services
This article is about the computer network protocol. For the IBM 650 assembly language, seeSymbolic Optimal Assembly Program. For surfactants used for cleaning, seeSoap. For other uses, seeSoap (disambiguation).
SOAP
StatusActive
First publishedInitially asXML-RPC in June 1998; 26 years ago (June 1998)
Latest version1.2
27 April 2007; 17 years ago (2007-04-27)
DomainText-based protocol
LicenseCopyright byW3C, implementations areroyalty-free
Websitew3.org/TR/soap12/
Internet protocol suite
Application layer
Transport layer
Internet layer
Link layer
This articleneeds additional citations forverification. Please helpimprove this article byadding citations to reliable sources. Unsourced material may be challenged and removed.
Find sources: "SOAP" – news ·newspapers ·books ·scholar ·JSTOR
(December 2023) (Learn how and when to remove this message)

SOAP, originally an acronym for Simple Object Access Protocol,[a] is a messagingprotocol specification for exchanging structured information in the implementation ofweb services incomputer networks. It usesXML Information Set for itsmessage format, and relies onapplication layer protocols, most oftenHypertext Transfer Protocol (HTTP), although some legacy systems communicate overSimple Mail Transfer Protocol (SMTP), for message negotiation and transmission.

Characteristics

[edit]

SOAP provides the Messaging Protocol layer of aweb services protocol stack for web services. It is an XML-based protocol consisting of three parts:

  • an envelope, which defines the message structure[1] and how to process it
  • a set of encoding rules for expressing instances of application-defined datatypes
  • a convention for representing procedure calls and responses

SOAP has three major characteristics:

  1. extensibility (security andWS-Addressing are among the extensions under development)
  2. neutrality (SOAP can operate over any protocol such asHTTP,SMTP,TCP,UDP)
  3. independence (SOAP allows for anyprogramming model)

As an example of what SOAP procedures can do, an application can send a SOAP request to a server that has web services enabled—such as a real-estate price database—with the parameters for a search. The server then returns a SOAP response (an XML-formatted document) with the resulting data, e.g., prices, location, features. Since the generated data comes in a standardized machine-parsable format, the requesting application can then integrate it directly.

The SOAP architecture consists of several layers of specifications for:

  • message format
  • Message Exchange Patterns (MEP)
  • underlying transport protocol bindings
  • message processing models
  • protocol extensibility

SOAP evolved as a successor ofXML-RPC, though it borrows its transport and interaction neutrality from Web Service Addressing[2] and the envelope/header/body from elsewhere (probably fromWDDX).[citation needed]

History

[edit]

SOAP was designed as an object-access protocol and released asXML-RPC in June 1998 as part ofFrontier 5.1 byDave Winer,Don Box, Bob Atkinson, and Mohsen Al-Ghosein forMicrosoft, where Atkinson and Al-Ghosein were working.[3] The specification was not made available until it was submitted toIETF 13 September 1999.[4][5] According to Don Box, this was due to politics within Microsoft.[6] Because of Microsoft's hesitation, Dave Winer shippedXML-RPC in 1998.[7]

The submittedInternet Draft did not reachRFC status and is therefore not considered a "web standard" as such. Version 1.1 of the specification was published as a W3C Note on 8 May 2000.[8] Since version 1.1 did not reachW3C Recommendation status, it can not be considered a "web standard" either. Version 1.2 of the specification, however, became aW3C recommendation on June 24, 2003.SOAP originally stood for "Simple Object Access Protocol" but version 1.2 of the standard dropped this acronym.[9]

The SOAP specification[10] was maintained by the XML Protocol Working Group[11] of theWorld Wide Web Consortium until the group was closed 10 July 2009.

After SOAP was first introduced, it became the underlying layer of a more complex set ofweb services, based onWSDL,XSD andUDDI. These different services, especially UDDI, have proved to be of far less interest,[citation needed] but an appreciation of them gives a complete understanding of the expected role of SOAP compared to how web services have actually evolved.[according to whom?]

SOAP terminology

[edit]

SOAP specification can be broadly defined to be consisting of the following three conceptual components: protocol concepts, encapsulation concepts and network concepts.[12]

Protocol concepts

[edit]
SOAP
This is a set of rules formalizing and governing the format and processing rules for information exchanged between a SOAP sender and a SOAP receiver.
SOAP nodes
These are physical/logical machines with processing units which are used to transmit/forward, receive and process SOAP messages. These are analogous tonodes in a network.
SOAP roles
Over the path of a SOAP message, all nodes assume a specific role. The role of the node defines the action that the node performs on the message it receives. For example, a role "none" means that no node will process the SOAP header in any way and simply transmit the message along its path.
SOAP protocol binding
A SOAP message needs to work in conjunction with other protocols to be transferred over a network. For example, a SOAP message could useTCP as a lower layer protocol to transfer messages. These bindings are defined in the SOAP protocol binding framework.[13]
SOAP features
SOAP provides a messaging framework only. However, it can be extended to add features such as reliability, security etc. There are rules to be followed when adding features to the SOAP framework.
SOAP module
A collection of specifications regarding the semantics of SOAP header to describe any new features being extended upon SOAP. A module needs to realize zero or more features. SOAP requires modules to adhere to prescribed rules.[14]

Data encapsulation concepts

[edit]
SOAP message
Represents the information being exchanged between 2 SOAP nodes.
SOAP envelope
It is the enclosing element of an XML message identifying it as a SOAP message.
SOAP header block
A SOAP header can contain more than one of these blocks, each being a discrete computational block within the header. In general, the SOAProle information is used to target nodes on the path. A header block is said to be targeted at a SOAP node if the SOAP role for the header block is the name of a role in which the SOAP node operates. (ex: A SOAP header block with role attribute asultimateReceiver is targeted only at the destination node which has this role. A header with a role attribute asnext is targeted at each intermediary as well as the destination node.)
SOAP header
A collection of one or more header blocks targeted at each SOAP receiver.
SOAP body
Contains the body of the message intended for the SOAP receiver. The interpretation and processing of SOAP body is defined by header blocks.
SOAP fault
In case a SOAP node fails to process a SOAP message, it adds the fault information to the SOAP fault element. This element is contained within the SOAP body as a child element.

Message sender and receiver concepts

[edit]
SOAP sender
The node that transmits a SOAP message.
SOAP receiver
The node receiving a SOAP message. (Could be an intermediary or the destination node).
SOAP message path
The path consisting of all the nodes that the SOAP message traversed to reach the destination node.
Initial SOAP sender
This is the node which originated the SOAP message to be transmitted. This is the root of the SOAP message path.
SOAP intermediary
All the nodes in between the SOAP originator and the intended SOAP destination. It processes the SOAP header blocks targeted at it and acts to forward a SOAP message towards an ultimate SOAP receiver.
Ultimate SOAP receiver
The destination receiver of the SOAP message. This node is responsible for processing the message body and any header blocks targeted at it.

Specification

[edit]
SOAP structure

The SOAP specification defines the messaging framework, which consists of:

  • TheSOAP processing model, defining the rules for processing a SOAP message[15]
  • TheSOAP extensibility model defining the concepts of SOAP features and SOAP modules[15]
  • TheSOAP underlying protocol binding framework describing the rules for defining a binding to an underlying protocol that can be used for exchanging SOAP messages between SOAP nodes[15]
  • TheSOAP message construct defining the structure of a SOAP message[15]

SOAP building blocks

[edit]

A SOAP message is an ordinary XML document containing the following elements:

ElementDescriptionRequired
EnvelopeIdentifies the XML document as a SOAP message.Yes
HeaderContains header information.No
BodyContains call and response information.Yes
FaultProvides information about errors that occurred while processing the message.No

Transport methods

[edit]

BothSMTP andHTTP 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 networkfirewalls. SOAP may also be used overHTTPS (which is the same protocol as HTTP at the application level, but uses anencrypted transport protocol underneath) with either simple or mutual authentication; this is the advocatedWS-I method to provide web service security as stated in theWS-I Basic Profile 1.1.

This is a major advantage over other distributed protocols likeGIOP/IIOP orDCOM, which are normally filtered by firewalls. SOAP overAMQP is yet another possibility that some implementations support. SOAP also has an advantage overDCOM that it is unaffected by security rights configured on the machines that require knowledge of both transmitting and receiving nodes. This lets SOAP be loosely coupled in a way that is not possible withDCOM. There is also theSOAP-over-UDPOASIS standard.

Message format

[edit]

XML Information Set was chosen as the standard message format because of its widespread use by major corporations andopen source development efforts. Typically, XML Information Set isserialized asXML. A wide variety of freely availabletools significantly eases the transition to a SOAP-based implementation. The somewhat lengthysyntax ofXML can be both a benefit and a drawback. While it facilitates error detection and avoids interoperability problems such as byte-order (endianness), it can slow processing speed and can be cumbersome. For example,CORBA,GIOP,ICE, andDCOM use much shorter, binary message formats. On the other hand, hardware appliances are available to accelerate processing ofXML messages.[16][17]Binary XML is also being explored as a means for streamlining the throughput requirements of XML.XML messages by their self-documenting nature usually have more 'overhead' (e.g., headers, nested tags, delimiters) than actual data in contrast to earlier protocols where the overhead was usually a relatively small percentage of the overall message.

In financial messaging SOAP was found to result in a 2–4 times larger message than previous protocolsFIX (Financial Information Exchange) andCDR (Common Data Representation).[18]

XML Information Set does not have to be serialized in XML. For instance, CSV andJSON XML-infoset representations exist. There is also no need to specify a generic transformation framework. The concept of SOAP bindings allows for specific bindings for a specific application. The drawback is that both the senders and receivers have to support this newly defined binding.

Example message (encapsulated in HTTP)

[edit]

The message below requests a stock price for AT&T (stock ticker symbol "T").

POST/InStockHTTP/1.1Host:www.example.orgContent-Type:application/soap+xml; charset=utf-8Content-Length:299SOAPAction:"http://www.w3.org/2003/05/soap-envelope"<?xml version="1.0"?><soap:Envelopexmlns:soap="http://www.w3.org/2003/05/soap-envelope"xmlns:m="http://www.example.org"><soap:Header></soap:Header><soap:Body><m:GetStockPrice><m:StockName>T</m:StockName></m:GetStockPrice></soap:Body></soap:Envelope>

Technical critique

[edit]
This sectionneeds additional citations forverification. Please helpimprove this article byadding citations to reliable sources in this section. Unsourced material may be challenged and removed.(August 2020) (Learn how and when to remove this message)

Advantages

[edit]
  • SOAP's neutrality characteristic explicitly makes it suitable for use with any transport protocol. Implementations often use HTTP as a transport protocol, but other popular transport protocols can be used. For example, SOAP can also be used over SMTP,JMS[19][20] andmessage queues.
  • SOAP, when combined with HTTP post/response exchanges, tunnels easily through existing firewalls and proxies, and consequently doesn't require modifying the widespread computing and communication infrastructures that exist for processing HTTP post/response exchanges.
  • SOAP has available to it all the facilities of XML, including easy internationalization and extensibility with XML Namespaces.

Disadvantages

[edit]
  • When using standard implementation and the default SOAP/HTTP binding, the XML infoset is serialized as XML. To improve performance for the special case of XML with embedded binary objects, theMessage Transmission Optimization Mechanism was introduced.
  • When relying on HTTP as a transport protocol and not usingWeb Services Addressing or anEnterprise Service Bus, the roles of the interacting parties are fixed. Only one party (the client) can use the services of the other.
  • SOAP is less "simple" than the name would suggest. The verbosity of the protocol, low parsing speed of XML, and lack of a standardized interaction model led to the dominance of services using theHTTP protocol more directly. See, for example,REST.
  • Being protocol-agnostic, SOAP is unable to take advantage of protocol-specific features and optimizations such asREST's Uniform Interface orcaching – instead having to reimplement them (as withWS-Addressing).

See also

[edit]

Notes

[edit]
  1. ^Since version 1.2 of the specification it is no longer anacronym for Simple Object Access Protocol

References

[edit]
  1. ^Hirsch, Frederick; Kemp, John; Ilkka, Jani (2007-01-11).Mobile Web Services: Architecture and Implementation. John Wiley & Sons (published 2007). p. 27.ISBN 9780470032596. Retrieved2014-09-15.Simple Object Access Protocol (SOAP) defines a messaging envelope structure designed to carry application payload in one portion of the envelope (the message body) and control information in another (the message header).
  2. ^"Web Services Addressing (WS-Addressing)".www.w3.org.Archived from the original on 2016-09-25. Retrieved2016-09-15.
  3. ^"Exclusive .NET Developer's Journal "Indigo" Interview with Microsoft's Don Box". Dotnet.sys-con.com. Archived fromthe original on 2019-01-06. Retrieved2012-10-04.
  4. ^"XML Cover Pages on the history of SOAP". Coverpages.org.Archived from the original on 2001-03-03. Retrieved2003-07-22.
  5. ^"SOAP: Simple Object Access Protocol".Ietf Datatracker. September 1999.Archived from the original on 2021-02-25. Retrieved2015-09-20.
  6. ^"Don Box on the history of SOAP". XML.com. 2001-04-04.Archived from the original on 2015-06-18. Retrieved2015-09-20.
  7. ^"XML-RPC for Newbies". 1998-07-14. Archived fromthe original on October 12, 1999.
  8. ^"W3C Note on Simple Object Access Protocol (SOAP) 1.1". W3C. 2000-05-08.Archived from the original on 2021-03-04. Retrieved2015-09-20.
  9. ^"SOAP Version 1.2 Part 1: Messaging Framework (Second Edition)".W3C. April 27, 2007.Archived from the original on 2012-06-19. Retrieved2012-06-15.Note: In previous versions of this specification the SOAP name was an acronym. This is no longer the case. (Underneath section 1. Introduction)
  10. ^"SOAP Specifications". W3C.Archived from the original on 2021-04-15. Retrieved2014-03-29.
  11. ^"W3C XML Protocol Working Group". W3C.Archived from the original on 2018-12-25. Retrieved2014-03-29.
  12. ^"SOAP Version 1.2 Part 1: Messaging Framework (Second Edition)".www.w3.org.Archived from the original on 2016-09-20. Retrieved2016-09-14.
  13. ^"Binding Framework Proposal".www.w3.org.Archived from the original on 2017-07-11. Retrieved2016-09-14.
  14. ^"SOAP Version 1.2 Part 1: Messaging Framework (Second Edition)".www.w3.org.Archived from the original on 2016-09-20. Retrieved2016-09-14.
  15. ^abcd"SOAP Version 1.2 Part 1: Messaging Framework (Second Edition)".www.w3.org.Archived from the original on 2017-04-02. Retrieved2020-06-24.
  16. ^"IBM Datapower". 306.ibm.com. 2011-11-30. Archived fromthe original on 2008-06-22. Retrieved2012-10-04.
  17. ^"IBM Zurich XML Accelerator Engine"(PDF). Archived fromthe original(PDF) on 2012-09-30. Retrieved2012-10-04.
  18. ^"Evaluating SOAP for High Performance Business Applications: Real-Time Trading Systems". Tenermerx Pty Ltd University of Technology, Sydney. 2011-11-30.Archived from the original on 2013-08-10. Retrieved2013-03-14.
  19. ^"SOAP over JMS protocol". IBM.Archived from the original on March 22, 2020. RetrievedMarch 22, 2020.
  20. ^"SOAP-JMS FAQ". SOAP-JMS Binding Working Group.Archived from the original on July 17, 2017. RetrievedMarch 22, 2020.

Further reading

[edit]

External links

[edit]
Products and
standards
Recommendations
Notes
Working drafts
Guidelines
Initiative
Deprecated
Obsoleted
Organizations
Elected groups
Working groups
Community & business groups
Closed groups
Software
Browsers
Conferences
Authority control databases: NationalEdit this at Wikidata
Retrieved from "https://en.wikipedia.org/w/index.php?title=SOAP&oldid=1282441746"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp