ksoap2: type=“xs:anyType”在wsdl中,这是什么意思
<xs:element name="corpusValue" type="xs:anyType" nillable="true"
minOccurs="0" maxOccurs="unbounded"/>
在 wsdl 中,您实例化什么类型的对象?
type="xs:anyType"
是什么?
<xs:element name="corpusValue" type="xs:anyType" nillable="true"
minOccurs="0" maxOccurs="unbounded"/>
in the wsdl what type of object do you instantiate of this?
What is type="xs:anyType"
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://www.w3.org/TR/xmlschema-0/#anyType
http://www.w3.org/TR/xmlschema-0/#anyType
它的确切含义是:任何类型。
XML 架构描述 XML 文档的结构并对 XML 文件的元素实施约束。 XML 中的元素必须遵循架构中描述的类型才能被视为有效。
但有时需要具有任何类型的字段或元素,以便您可以在元素上使用多态性或能够 使用架构未指定的元素扩展 XML 文档。
这就是 any 类型的用途。
It means exactly that: any type.
An XML Schema describes the structure of an XML document and enforces constraints on the elements of that XML file. Elements in an XML must respect the types described in the schema to be considered valid.
But there is sometimes the need to have a field or element as being of any type so that you can use polymorphism on the elements or to be able to extend the XML document with elements not specified by the schema.
That's what the any type is used for.