|
|
|
As with Web service roles, the same SOAP node can act as different types, depending on its position within the message path and the state of the current business activity. For instance, a SOAP node transmitting a message as the initial sender can later receive a response as the ultimate receiver.
|
|
The container of SOAP message information is referred to as a SOAP envelope. Let's open it, and take a brief look at the underlying structure of a typical SOAP message.
|
|
The root Envelope element that frames the message document consists of a mandatory body section and an optional header area.
|
<env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope">
<env:Header>
...
</env:Header>
<env:Body>
...
</env:Body>
</env:Envelope>
|
|
The SOAP header is expressed using the Header construct, which can contain one or more sections or blocks.
|
<env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope">
<env:Header>
<n:shipping >
UPS
</n:shipping>
</env:Header>
<env:Body>
...
</env:Body>
</env:Envelope>
|
|
Common uses of header blocks include:
|
• implementation of (predefined or application-specific) SOAP extensions, such as those introduced by second-generation specifications
|
• identification of target SOAP intermediaries
|
|
• providing supplementary meta information about the SOAP message
|
|
While a SOAP message progresses along a message path, intermediaries may add, remove, or process information in SOAP header blocks. Although an optional part of a SOAP message, the use of the header section to carry header blocks is commonplace when working with second-generation Web services specifications.
|
|
The one part of a SOAP message that is not optional is the body. As represented by the Body construct, this section acts as a container for the data being delivered by the SOAP message. Data within the SOAP body is often referred to as the payload or payload data.
|
<env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope">
<env:Header>
...
</env:Header>
<env:Body>
<x:Book xmlns:x="http://www.examples.ws/">
<x:Title>
Service-Oriented Architecture
A Field Guide to Integrating XML
and Web services
</x:Title>
</x:Book>
</env:Body>
</env:Envelope>
|
|
The Body construct can also be used to host exception information within nested Fault elements. Although fault sections can reside alongside standard data payloads, this type of information is often sent separately in response messages that communicate error conditions.
|
|
The Fault construct consists of a series of system elements used to identify characteristics of the exception.
|
<env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope">
<env:Body>
<env:Fault>
<env:Code>
<env:Value>
VersionMismatch
</env:Value>
</env:Code>
<env:Reason>
<env:Text xml:lang="en">
versions do not match
</env:Text>
</env:Reason>
</env:Fault>
</env:Body>
</env:Envelope>
|
|
Now that you’ve had a look at the internal structure and syntax of a SOAP message, let’s finish by briefly introducing SOAP node roles. When discussing SOAP nodes, roles relate to an optional env:role[1] attribute that a SOAP message can use to identify header blocks intended for specific types of SOAP receivers. Therefore, SOAP roles are associated only to types of SOAP nodes that perform a receiving function. In other words, intermediaries and ultimate receivers.
|
|
The two most common env:role attribute values are next and ultimateReceiver. An intermediary node will process only header blocks identified with the next role, whereas a node acting as the ultimate receiver will process both.
|
Note: The env:role attribute was introduced in version 1.2 of the SOAP specification. It was previously named env:actor.
|