必需的 SOAP 的 Envelope 元素是 SOAP 消息的根元素。它可把 XML 文档定义为 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"> |
... |
Message information goes here |
... |
</soap:Envelope> |
SOAP 的 encodingStyle 属性用于定义在文档中使用的数据类型。此属性可出现在任何 SOAP 元素中,并会被应用到元素的内容及元素的所有子元素上。
SOAP 消息没有默认的编码方式。
soap:encodingStyle="URI" |
<?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"> |
... |
Message information goes here |
... |
</soap:Envelope> |