Tuesday, January 5, 2016

SOAP Webservices - What is a SOAP envelope element?

Ref:-

http://javahungry.blogspot.com/2015/07/web-services-interview-questions-and-answers.html

SOAP envelop element is the root element of a SOAP message which defines the XML document as a SOAP message.
An example:
<?xml version="1.0"?>
<soap:Envelope
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
  ...
  Message information
  ...
</soap:Envelope>

No comments:

Post a Comment