Listing 3: A sample SOAP message sent via HTTP

POST /soapdemo/services.asp HTTP/1.1
Host: 131.107.91.76
Content-Type: text/xml
Content-Length: 383
SOAPAction: ""

<?xml version="1.0"?>
<SOAP-ENV:Envelope 
 xmlns:SOAP-ENV='http://schemas.xmlsoap.org/soap/envelope/' 
 SOAP-ENV:encodingStyle=
 'http://schemas.xmlsoap.org/soap/encoding/'>
    <SOAP-ENV:Body>
        <ss:GetStockQuote xmlns:ss=
        'http://www.soaptoolkit.com/soapdemo/services.xml'>
            <description>Microsoft Corporation</description>
            <symbol>MSFT</symbol>
        </ss:GetStockQuote>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>
— End of Listing —