导读 | soap 是基于 xml 的简易协议,可使应用程序在 http 之上进行信息交换。或者更简单地说:soap 是用于访问网络服务的协议。强制使用的 soap 的 envelope 元素是 soap 消息的根元素。 |
soap envelope 元素
必需的 soap 的 envelope 元素是 soap 消息的根元素。它可把 xml 文档定义为 soap 消息。
实例
xml version="1.0"?>xmlns:soap="http://www.51sjk.com/upload/articles/1/0/325/325402_20220920132826434.jpg"soap:encodingstyle="http://www.51sjk.com/upload/articles/1/0/325/325402_20220920132826918.jpg">
...
message information goes here
...
xmlns:soap 命名空间
soap 消息必须拥有与命名空间 "http://www.51sjk.com/upload/articles/1/0/325/325402_20220920132826434.jpg" 相关联的一个 envelope 元素。
如果使用了不同的命名空间,应用程序会发生错误,并抛弃此消息。
encodingstyle 属性
soap 的 encodingstyle 属性用于定义在文档中使用的数据类型。此属性可出现在任何 soap 元素中,并会被应用到元素的内容及元素的所有子元素上。
soap 消息没有默认的编码方式。
语法
soap:encodingstyle="uri"
实例
xml version="1.0"?>xmlns:soap="http://www.51sjk.com/upload/articles/1/0/325/325402_20220920132826434.jpg"soap:encodingstyle="http://www.51sjk.com/upload/articles/1/0/325/325402_20220920132826918.jpg">
...
message information goes here
...