ksoap2: type=“xs:anyType”在wsdl中,这是什么意思

发布于 2024-10-23 20:07:52 字数 214 浏览 3 评论 0原文

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

杀手六號 2024-10-30 20:07:52

它的确切含义是:任何类型

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文