SOAPインスタンス
SOAP インスタンス
以下の例では、GetStockPrice リクエストがサーバーに送信されます。このリクエストには StockName パラメータがあり、Price パラメータが応答で返されます。この機能の名前空間は、次のアドレスで定義されます: "http://www.example.org/stock"
SOAP リクエスト:
POST /InStock HTTP/1.1
ホスト: www.example.org
Content-Type : application/soap+xml; charset=utf-8
Content-Length: nnn
<?xml version="1.0"?>
<soap:Envelope
xmlns:soap="http://www . w3.org/2001/12/soap-envelope"
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
<soap:Body xmlns:m="http://www.example.org/stock">
<m:GetStockPrice>
<m:株価名>IBM</m:株価名>
</m:GetStockPrice>
</soap:Body>
</soap:Envelope>
ホスト: www.example.org
Content-Type : application/soap+xml; charset=utf-8
Content-Length: nnn
<?xml version="1.0"?>
<soap:Envelope
xmlns:soap="http://www . w3.org/2001/12/soap-envelope"
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
<soap:Body xmlns:m="http://www.example.org/stock">
<m:GetStockPrice>
<m:株価名>IBM</m:株価名>
</m:GetStockPrice>
</soap:Body>
</soap:Envelope>
SOAP 応答:
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length; : nnn
<?xml version="1.0"?>
<soap:Envelope
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
soap:encodingStyle ="http://www.w3.org/2001/12/soap-encoding">
<soap:Body xmlns:m="http://www.example.org/stock">
<m:GetStockPriceResponse>
34.5
</m:GetStockPriceResponse>
</soap:本体>
</soap:封筒>
Content-Type: application/soap+xml; charset=utf-8
Content-Length; : nnn
<?xml version="1.0"?>
<soap:Envelope
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
soap:encodingStyle ="http://www.w3.org/2001/12/soap-encoding">
<soap:Body xmlns:m="http://www.example.org/stock">
<m:GetStockPriceResponse>
</m:GetStockPriceResponse>
</soap:本体>
</soap:封筒>