SOAP入門教學login
SOAP入門教學
作者:php.cn  更新時間:2022-04-11 14:22:12

SOAP Body 元素



強制使用的 SOAP Body 元素包含實際的 SOAP 訊息。


SOAP Body 元素

必要的 SOAP Body 元素可包含打算傳送到訊息最終端點的實際 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>

#上面的範例請求蘋果的價格。請注意,上面的 m: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>
#

PHP中文網