SOAP 是基於 XML 的簡易協議,可使應用程式在 HTTP 之上進行資訊交換。
或更簡單地說:SOAP 是用來存取網路服務的協定。
SOAP Body 元素 語法
必要的 SOAP Body 元素可包含打算傳送到訊息終端端點的實際 SOAP 訊息。
SOAP Body 元素的直接子元素可以是合格的命名空間。
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>