top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What does SOAP encodingStyle Attribute defines ?

+3 votes
309 views
What does SOAP encodingStyle Attribute defines ?
posted Dec 9, 2013 by Diya Sharma

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

The encodingStyle attribute is used to define the data types used in the document. This attribute may appear on any SOAP element, and applies to the element's contents and all child elements.
A SOAP message has no default encodin
Syntax
soap:encodingStyle="URI"

Example
<?xml version="1.0"?>
<soap:Envelope
xmlns:soap="http://www.www.org/2010/12/soap-envelope"
soap:encodingStyle="http://www.www.org/2010/12/2001/12/soap-encoding">
...
Message information goes here
...
</soap:Envelope>
answer Feb 2, 2014 by Vikas Upadhyay
...