The entire SOAP request


POST /calendar-request HTTP/1.1
Host: ebox.mcs.csuhayward.edu
Content-Type: text/plain; charset="utf-8"
Content-Length: 507

<SOAP-ENV:Envelope
  xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
  SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
>
  <SOAP-ENV:Body>
    <c:GetQuote xmlns:c="http://ebox.mcs.csuhayward.edu/~cs67408/soap-example/Stock">
        <c:ticker>IBM</c:ticker>
    </c:GetQuote>
  </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

               

The entire SOAP response (Even simpler than the request.)



HTTP/1.1 200 OK
Server: Ebox HTTP/2.0
Date: Tue, 21 Feb 2002 04:23:03 GMT
Content-type: text/xml; charset="utf-8"
Content-length: 296

<SOAP-ENV:Envelope
  xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
  SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
>
  <SOAP-ENV:Body>
    <c:GetQuoteResponse xmlns:c="http://ebox.mcs.csuhayward.edu/~cs67408/soap-example/Stock"/>
	<c:price>99.18</c:price>
    <c:GetQuoteResponse>
  </SOAP-ENV:Body>
</SOAP-ENV:Envelope>