by Thomas Erl
 First Generation Standards
divider
 An Inside Look into
 SOAP Messaging
Although originally conceived as a technology to bridge the gap between disparate RPC-based communication platforms, SOAP has evolved into the most widely supported messaging format and protocol for use with XML Web services. Hence the SOAP acronym is frequently referred to as the Service-Oriented Architecture (or Application) Protocol, instead of the Simple Object Access Protocol.
The SOAP specification establishes a standard message format that consists of an XML document capable of hosting RPC and document-centric data. This facilitates synchronous (request and response) as well as asynchronous (process-driven) data exchange models. With WSDL establishing a standard endpoint description format for applications, the document-centric message format is much more common.
SOAP institutes a method of communication based on a processing model that is in relative alignment with the overall Web services framework. It differs only in that it introduces terms and concepts that relate specifically to the manner in which SOAP messages need to be handled (within a technical implementation of this framework).
A SOAP node represents the processing logic responsible for transmitting, receiving, and performing a variety of processing tasks on SOAP messages. An implementation of a SOAP node is typically platform specific, and is commonly labeled as a SOAP server or a SOAP listener. Specialized variations also exist, such as SOAP routers. Conceptually, all are considered SOAP nodes. The SOAP node establishes as the underlying transport mechanism for a Web service.
SOAP nodes are best viewed as the technical infrastructure that powers all communication between Web services. When discussing the involvement of SOAP nodes, however, a slight departure from the terms and concepts established by the Web services framework needs to be incorporated.
Like Web services, SOAP nodes can exist as initial senders, intermediaries, and ultimate receivers. Whereas Web services are also classified as requestors and providers, SOAP nodes performing the equivalent tasks (sending, receiving) are referred to as SOAP senders and SOAP receivers. The SOAP specification, however, does not classify these as roles. For the purpose of this book, we'll refer to them as "types" of SOAP nodes.


A node type of SOAP initial sender is also a SOAP sender, and the SOAP ultimate receiver is also a SOAP receiver.

A SOAP node can act as an intermediary, transitioning through both SOAP sender and receiver types during the processing of a SOAP message.

(See diagrams below.)
 

return to homepage


SOA: Principles
of Service Design

by Thomas Erl

An in-depth guide dedicated to service engineering with a thorough exploration of the design principles that comprise the service-orientation design paradigm (including a comparison with object-orientation).


Service-Oriented Architecture:
Concepts, Technology, and Design

by Thomas Erl

The first "how-to" guide to building SOA, providing coverage of WS-* specifications, .NET and J2EE platforms, and step-by-step processes for service-oriented analysis and design.
Service-Oriented Architecture:
A Field Guide
to Integrating
XML and Web Services

by Thomas Erl

The best-selling guide to service-oriented integration, providing hundreds of integration strategies and over sixty best practices.

For more information about either book, visit: www.soabooks.com

About SOA Systems

SOA Systems Inc. provides strategic SOA consulting services and offers a comprehensive SOA training program.

For more information see:

•  www.soasystems.com

•  www.soatraining.com



   
   
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.

   
   
Home   Copyright © 2003-2007 SOA Systems Inc.