top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is SOAP's Syntax Rules?

+4 votes
456 views
What is SOAP's Syntax Rules?
posted Dec 9, 2013 by Diya Sharma

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

1 Answer

0 votes

What is SOAP's Syntax Rules?
SOAP Interview Questions and Answers
(Continued from previous question...)
What is SOAP's Syntax Rules?
Here are some important syntax rules:
* A SOAP message MUST be encoded using XML
* A SOAP message MUST use the SOAP Envelope namespace
* A SOAP message MUST use the SOAP Encoding namespace
* A SOAP message must NOT contain a DTD reference
* A SOAP message must NOT contain XML Processing Instructions

Skeleton SOAP Message

<?xml version="1.0"?>
<soap:Envelope
xmlns:soap="http://www.www.org/2010/12/soap-envelope"
soap:encodingStyle="http://www.www.org/2010/12/soap-encoding">

<soap:Header>
...
</soap:Header>

<soap:Body>
...
<soap:Fault>
...
</soap:Fault>
</soap:Body>

</soap:Envelope>
answer Dec 21, 2013 by Vikas Upadhyay
...