MENU
SOAP
Simple Object Access Protocol (SOAP) is used to exchange structured information in web services.A SOAP message is an XML document consisting of an Envelope root element, which contains an optional Header and a mandatory Body:
<?xml version="1.0"?>
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
<soap:Header>
</soap:Header>
<soap:Body>
<m:GetPrice xmlns:m="http://www.example.org/stock">
<m:StockName>Google</m:StockName>
</m:GetPrice>
</soap:Body>
</soap:Envelope>