Listing 4: A sample SOAP response to the message in Listing 3

HTTP/1.1 200 OK
Server: Microsoft-IIS/5.0
Date: Mon, 07 Aug 2000 03:29:41 GMT
MessageType: CallResponse
Content-Length: 292
Content-Type: text/xml
Expires: Mon, 07 Aug 2000 03:29:42 GMT
Cache-control: private

<?xml version="1.0"?>
<SOAP:Envelope xmlns:SOAP=
"HTTP://schemas.xmlsoap.org/soap/envelope/2000-03-01" 
encodingStyle=
"HTTP://schemas.xmlsoap.org/soap/envelope/2000-03-01">
    <SOAP:Body>
        <GetStockQuoteResponse>
            <price>69 1/8</price>
        </GetStockQuoteResponse>
    </SOAP:Body>
</SOAP:Envelope>
— End of Listing —