Latest web development tutorials

SOAP Body要素

必須のSOAP Body要素は、実際のSOAPメッセージが含まれています。


SOAP Body要素

必要なSOAPボディ要素は、メッセージの最終的な終点を目的と実際のSOAPメッセージを含むことができます。

SOAP Body要素の直接の子要素は、名前空間で修飾することができます。

<?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>
<m:GetPrice xmlns:m="http://www.w3schools.com/prices">
<m:Item>Apples</m:Item>
</m:GetPrice>
</soap:Body>

</soap:Envelope>

上記の例では、リンゴの価格を要求します。 上記メートルことに注意してください:GetPriceとItem要素は、アプリケーション固有の要素です。 彼らは、SOAP標準の一部ではありません。

そして、SOAP応答は次のようになります。

<?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>
<m:GetPriceResponse xmlns:m="http://www.w3schools.com/prices">
<m:Price>1.90</m:Price>
</m:GetPriceResponse>
</soap:Body>

</soap:Envelope>