SOAP 1.2 中的数据类型
最近,我在浏览一些有关 SOAP 的文档,发现很少有 SOAP 调用/响应。当然,这一定是我的菜鸟,但我惊讶地发现没有一个变量没有在标记中指定的数据类型。
那么,问题是:如果响应 XML 中没有指定数据类型,我们如何准确地知道从 SOAP 调用中获得了哪些数据?
Recently, I was looking through some SOAP-about documentation and saw few SOAP calls\responses. Of course that must be my noobness, but I was surprised to see that none of the variables didn't have a data type specified in tag.
So, the question is : how do we know exactly what data we get from SOAP call if there are no data types specified in response XML?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常,SOAP XML 消息与 XML 架构(
*.xsd
文件)关联,后者定义 XML 消息的确切结构和数据类型(和值范围)对于 XML 元素。请参阅:
Typically, a SOAP XML messages is associated with a XML Schema (a
*.xsd
file) which defines the exact structure of the XML message and the datatypes (and value ranges) for the XML elements.See: