Home > Articles > Web Services > XML

This chapter is from the book

10.4 Introduction to SOAP serialization rules

SOAP defines a set of serialization rules for encoding datatypes in XML. All data is serialized as elements rather than attributes. Attributes are only used for structural metadata; for example, when references are needed. For simple types such as strings, numbers, dates, and so forth, the datatypes defined in XML Schema Part II—Datatypes are used. For types such as classes or structures, each field in the type is serialized using an element with the same name as the field. For array types, each array element is typically serialized using an element with the same name as the type, although other element names may be used. In both cases, if the field being serialized is itself a structure or an array, then nested elements are used. The top-level element in both the structure case and the array case is namespace qualified. Descendant elements should be unqualified.

The serialization rules apply to children of the Header element as well as children of the Body element. Such children are serialized types just like any other type. A request and any associated response are also treated as types, and are serialized according to the same rules.

Examples Serialization of a structured Java or VB type

package example.org.People;
// Java class definition 
class Person
{
 String name;
 float age;
 short height;
}

// VB Type definition
Public Type Person
 name As String
 age As Single
 height As Integer
End Type


<p:Person 
  xmlns:p='urn:example-org:people'>
 <name>Martin</name>
 <age>33</age>
 <height>64</height>
</p:Person>

Serialization of a Java or VB array

package example.org.Num;
// Java class definition 
class Numbers
{
 long[5] data;
}

// VB Type definition
Public Type Numbers
 data(5) As Long
End Type

<p:Numbers 
  xmlns:p='urn:example-org:num'>
 <data enc:arrayType='xsd:long[5]' 
xmlns:enc='http://schemas.xmlsoap.org/soap/encoding/'>
  <enc:long>2</enc:long>
  <enc:long>3</enc:long>
  <enc:long>5</enc:long>
  <enc:long>7</enc:long>
  <enc:long>9</enc:long>
 </data>
</p:Numbers>

10.4.1 Serialization of simple structured data

Serializing data structures, when each field is referred to exactly once, is straightforward. Each field is serialized as an embedded element, a descendant element of the Body element, not as an immediate child. Such an element is called a single-reference accessor, and it provides access to the data in the field at a single location in the message. The element name used to contain the data is the same as the field name used in the programmatic type.

ExampleSerializing structured data

package example.org.People;
// Java class definitions 
class PersonName
{
 String givenName;
 String familyName;
}

class Person
{
 PersonName name;
 float age;
 short height;

 public static void AddPerson ( Person person );
}

// VB Type definitions
Public Type PersonName
 givenName As String
 familyName As String
End Type

Public Type Person
 name As PersonName
 age As Single
 height As Integer
End Type

Public Sub AddPerson ( ByRef person As Person )
End Sub


<soap:Envelope 
   xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
   soap:encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'>
 <soap:Body>
  <p:AddPerson 
    xmlns:p='urn:example-org:people'>
   <person>
    <name>
     <givenName>Martin</givenName>
     <familyName>Gudgin</familyName>
    </name>
    <age>33</age>
    <height>64</height>
   </person>
  </p:AddPerson>
 </soap:Body>
</soap:Envelope>

Java and VB definitions for a method call taking a structured type representing a Person as a single parameter, followed by the SOAP message representing a request to execute such a method.

10.4.2 Serialization of structured data with multiple references

In cases when a field in a data structure is referred to in several places in that data structure (for example, in a doubly linked list), then the field is serialized as an independent element, an immediate child element of Body, and must have an id attribute of type ID. Such elements are called multireference accessors. They provide access to the data in the field from multiple locations in the message. Each reference to the field in the data structure is serialized as an empty element with an href attribute of type IDREF, where the value of the attribute contains the identifier specified in the id attribute on the multireference accessor preceded by a fragment identifier, #.

ExampleMultireference accessors

package example.org.People;
// Java class definition 
class PersonName
{
 String givenName;
 String familyName;
}
class Person
{
 PersonName name;
 float age;
 short height;

 public static boolean Compare ( Person p1, Person p2 );
}


<soap:Envelope 
   xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
   soap:encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'>
 <soap:Body xmlns:p='urn:example-org:people'>
  <p:Compare>
   <p1 href='#pid1' />
   <p2 href='#pid1' />
  </p:Compare>
  <p:Person id='pid1' >
   <name>
    <givenName>Martin</givenName>
    <familyName>Gudgin</familyName>
   </name>
   <age>33</age>
   <height>64</height>
  </p:Person>
 </soap:Body>
</soap:Envelope>

Java definition for a method call taking two parameters both of type Person, followed by the SOAP message representing a request to execute such a method where both parameters refer to the same instance of Person.

10.4.3 Dealing with null references in complex data structures

In certain cases when reference types exist in a programmatic data structure there is a need to represent a null reference. Such references are modeled in SOAP messages using the nil attribute in the http://www.w3.org/2001/XMLSchema-instance namespace. Setting the value of the attribute to 1 indicates that the accessor on which it appears represents a null reference.

Example Null references

package example.org.Nodes;

// Java class definition 
class Node
{
 String val; 
 Node next;

 public static long ListLength ( Node node );
}


<soap:Envelope 
   xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
   soap:encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'>
   <next xmlns:xsi='http://www.w3.org/2001/XMLSchema' 
      -instance xsi:nil='1' />
 <soap:Body >
  <n:ListLength xmlns:n='urn:example-org:nodes'>
   <node>
    <val>New York</val>
     <next>
      <val>Paris</val>
       <next>
        <val>London</val>
        </next>
     </next>
   </node>
  </n:ListLength>
 </soap:Body>
</soap:Envelope>

Java class definition for a simple linked list. The end of the list is indicated by a null reference in the next field. A list of three items is passed in the request message.

10.4.4 Serializing dynamically typed data

SOAP provides for serialization of dynamically typed data; that is, data typed at run-time, through a polymorphic accessor. Such accessors look like normal accessors apart from the presence of a type in the http://www.w3.org/2001/XMLSchema-instance namespace. This attribute indicates the type the accessor actually holds. The value of this attribute may well vary from message to message.

ExampleDynamically typed date

package example.org.Poly;

// Java definitions
class Poly
{
 public static void Execute ( Object param );
}

' Visual Basic Definition
Public Sub Execute ( param As Variant )
End Sub


<soap:Envelope 
   xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
   soap:encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'>
 <soap:Body>
  <p:Execute 
  xmlns:p='urn:example-org:poly'
  xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
  xmlns:xsd='http://www.w3.org/2001/XMLSchema' >
   <param xsi:type='xsd:long' >2000</param>
  </p:Execute>
 </soap:Body>
</soap:Envelope>

<soap:Envelope 
   xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
   soap:encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'>
 <soap:Body>
  <p:Execute 
  xmlns:p='urn:example-org:poly'
  xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
  xmlns:pre='urn:example-org:people'>
   <param xsi:type='pre:Person' >
    <name>
     <givenName>Martin</givenName>
     <familyName>Gudgin</familyName>
    </name>
    <age>33</age>
    <height>64</height>
   </param>
  </p:Execute>
 </soap:Body>
</soap:Envelope>

Java and VB definitions for a method call taking a dynamically typed parameter followed by several SOAP messages representing a request to execute such a method. The first SOAP message passes a parameter of type long whereas the second passes a parameter of type Person.

10.4.5 Arrays

SOAP provides comprehensive array support. Single and multidimensional arrays are supported, along with sparse and jagged arrays and partial transmission. Arrays in SOAP are always of type Array in the http://schemas.xmlsoap.org/soap/encoding/ namespace, or a type derived by restriction from that type. If they are of the Array type, they are encoded using an Array element also in the http://schemas.xmlsoap.org/soap/encoding/ namespace. If they are of a derived type, then any element name may be used. In either case, an arrayType attribute in the http://schemas.xmlsoap.org/soap/encoding/ namespace is mandatory. The type of this attribute is string, but it in fact indicates the type of the array along with dimension information. Each dimension appears in square brackets after the QName for the type, separated by commas. Each array item is serialized as an element. The name of this element can be the type name or some arbitrary name.

Example Simple array example

<soap:Envelope 
   xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'
   soap:encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'>
 <soap:Body>
  <m:MethodResponse 
    xmlns:m='urn:example-org:someuri' >
   <enc:Array 
   xmlns:enc='http://schemas.xmlsoap.org/soap encoding/' 
    xmlns:xsd='http://www.w3.org/2001/XMLSchema'
      enc:arrayType='xsd:long[5]' >
      <enc:long>2</enc:long>
      <enc:long>3</enc:long>
      <enc:long>5</enc:long>
      <enc:long>7</enc:long>
      <enc:long>9</enc:long>
   </enc:Array>
  </m:MethodResponse>
 </soap:Body>
</soap:Envelope>

A response message containing an array of five long values. Note the value of the arrayType attribute indicating the size of the array.

10.4.6 Multidimensional arrays

Multidimensional arrays can be encoded by specifying multiple dimensions separated by commas inside the square brackets in the arrayType attribute. Any number of dimensions may be specified.

Example Multidimensional array example

<soap:Envelope 
  xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'
  soap:encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'>
 <soap:Body>
  <m:Method 
    xmlns:m='urn:example-org:some-uri' > 
   <enc:Array 
   xmlns:enc='http://schemas.xmlsoap.org/soap/encoding/' 
      xmlns:xsd='http://www.w3.org/2001/XMLSchema'
      enc:arrayType='xsd:string[2,3]' >
    <item>row 1 column 1</item>
    <item>row 1 column 2</item>
    <item>row 1 column 3</item>
    <item>row 2 column 1</item>
    <item>row 2 column 2</item>
    <item>row 2 column 3</item>
   </enc:Array>
  </m:Method>
 </soap:Body>
</soap:Envelope>

A request message containing a two-dimensional array of strings. Note the value of the arrayType attribute indicating the type and dimensions of the array.

10.4.7 Partial transmission of arrays

In certain scenarios an array of a certain size may need to be transmitted, but only a subset of the items needs to be sent. For such arrays the array element is annotated with an offset attribute in the http://schemas.xmlsoap.org/soap/encoding/ namespace. The value of the offset attribute indicates the zero-based offset of the first element. The value appears in square brackets. Listed items are assumed to appear at contiguous locations in the array. Items may be omitted from the end of the array.

Example Partial array tranmission

<soap:Envelope 
   xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'
   soap:encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'>
 <soap:Body>
  <m:Method xmlns:m='urn:example-org:someuri' >
   <enc:Array 
   xmlns:enc='http://schemas.xmlsoap.org/soap/encoding/' 
    xmlns:xsd='http://www.w3.org/2001/XMLSchema'
      enc:arrayType='xsd:string[9]' 
      enc:offset='[2]'>
    <item>Earth</item>
    <item>Mars</item>
    <item>Jupiter</item>
   </enc:Array>
  </m:Method>
 </soap:Body>
</soap:Envelope>

A request message that transmits the third, fourth, and fifth items in a nine-item array

10.4.8 Sparse arrays

Sparse arrays, those in which noncontiguous items need to be transmitted, are also supported. Each serialized array item is annotated with a position attribute in the http://schemas.xmlsoap.org/soap/encoding/ namespace. The value of the position attribute is a zero-based offset of the position of the item in the array, enclosed in square brackets.

Example Sparse arrays

<soap:Envelope 
   xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'
   soap:encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'>
 <soap:Body>
  <m:Method xmlns:m='urn:example-org:someuri' >
   <enc:Array 
   xmlns:enc='http://schemas.xmlsoap.org/soap/encoding/'
   xmlns:xsd='http://www.w3.org/2001/XMLSchema'
      enc:arrayType='xsd:string[9]' >
    <item enc:position='[1]'>Venus</item>
    <item enc:position='[3]'>Mars</item>
    <item enc:position='[7]'>Neptune</item>
   </enc:Array>
  </m:Method>
 </soap:Body>
</soap:Envelope>

A request message that transmits the second, fourth, and eighth items in a nine-item array

10.4.9 Jagged arrays

SOAP supports jagged arrays, also known as arrays of arrays. The arrayType attribute contains a type that includes empty square brackets, as many as necessary to indicate how many dimensions each array has, followed by the dimensions of the array of arrays in square brackets as normal. The inner array elements are also annotated with the appropriate arrayType attribute.

Examples Jagged arrays with single-reference accessors

<soap:Envelope 
   xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'
   soap:encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'>
 <soap:Body>
   <enc:Array 
   xmlns:enc='http://schemas.xmlsoap.org/soap/encoding/'
      xmlns:xsd='http://www.w3.org/2001/XMLSchema'
      enc:arrayType='xsd:string[][2]' >
    <enc:Array enc:arrayType='xsd:string[2]'>
     <item>Mercury</item>
     <item>Venus</item>
    </enc:Array>
    <enc:Array enc:arrayType='xsd:string[6]'>
     <item>Mars</item>
     <item>Jupiter</item>
     <item>Saturn</item>
     <item>Uranus</item>
     <item>Neptune</item>
     <item>Pluto</item>
    </enc:Array>
   </enc:Array>
  </m:Method>
 </soap:Body>
</soap:Envelope>

A request message that transmits an array of arrays of strings. Each array is encoded using a single-reference accessor.

Jagged arrays with multireference accessors

<soap:Envelope 
   xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'
   soap:encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'>
 <soap:Body 
  xmlns:enc='http://schemas.xmlsoap.org/soap/encoding/'
  xmlns:xsd='http://www.w3.org/2001/XMLSchema' >
  <m:Method xmlns:m='urn:some-uri' >
   <enc:Array enc:arrayType='xsd:string[][2]' >
    <item href='#id1' />
    <item href='#id2' />
   </enc:Array>
  </m:Method>
  <enc:Array id='id1' enc:arrayType='xsd:string[2]'>
   <item>Mercury</item>
   <item>Venus</item>
  </enc:Array>
  <enc:Array id='id2' 
        enc:arrayType='xsd:string[6]'>
   <item>Mars</item>
   <item>Jupiter</item>
   <item>Saturn</item>
   <item>Uranus</item>
   <item>Neptune</item>
   <item>Pluto</item>
  </enc:Array>
 </soap:Body>
</soap:Envelope>

A request message that transmits an array of arrays of strings. Each array is encoded using a multireference accessor.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020