Soap Example
# SOAP Example
* * *
## A SOAP Example
In the following example, a GetStockPrice request is sent to the server. This request has a StockName parameter, and a Price parameter is returned in the response. The namespace for this functionality is defined at this address: "http://www.example.org/stock"
### SOAP Request:
POST /InStock HTTP/1.1
Host: www.example.org
Content-Type: application/soap+xml; charset=utf-8
Content-Length: nnn
IBM
### SOAP Response:
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: nnn
34.5
YouTip