SOAP 是基于 XML 的簡易協(xié)議,可使應(yīng)用程序在 HTTP 之上進(jìn)行信息交換。

或者更簡單地說:SOAP 是用于訪問網(wǎng)絡(luò)服務(wù)的協(xié)議。

SOAP Header 元素 語法

可選的 SOAP Header 元素可包含有關(guān) SOAP 消息的應(yīng)用程序?qū)S眯畔ⅲū热缯J(rèn)證、支付等)。

如果 Header 元素被提供,則它必須是 Envelope 元素的第一個(gè)子元素。

SOAP Header 元素 示例

<?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:Header>
  <m:Trans xmlns:m="http://www.w3schools.com/transaction/"
  soap:mustUnderstand="1">234
  </m:Trans>
</soap:Header>
...
...
</soap:Envelope>

熱門推薦