SOAP Envelope
时间:2020-01-09 10:44:21 来源:igfitidea点击:
SOAP Envelope元素是SOAP消息中的根元素。在SOAP Envelope内部,我们可以找到Header(可选)和Body元素。
这是一个示例SOAP Envelope元素(Envelope元素以粗体显示):
<?xml version="1.0"?> <env:Envelope xmlns:env="http://www.w3.org/2002/06/soap-envelope" > <env:Header> </env:Header> <env:Body> </env:Body> </env:Envelope>
注意Envelope元素内的env
命名空间声明:
xmlns:env="http://www.w3.org/2002/06/soap-envelope"
此名称空间声明必须始终存在于SOAP Envelope元素中。前缀(env
)可以根据需要进行更改。