SOAP 是基於 XML 的簡(jiǎn)易協(xié)議,可使應(yīng)用程式在 HTTP 之上進(jìn)行資訊交換。

或更簡(jiǎn)單地說(shuō):SOAP 是用來(lái)存取網(wǎng)路服務(wù)的協(xié)定。

SOAP Body 元素 語(yǔ)法

必要的 SOAP Body 元素可包含打算傳送到訊息終端端點(diǎn)的實(shí)際 SOAP 訊息。

SOAP Body 元素的直接子元素可以是合格的命名空間。

SOAP Body 元素 範(fàn)例

<?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>