XSD 是否同时允许 simpleContent 和complexContent?

发布于 2024-09-02 10:42:27 字数 518 浏览 8 评论 0原文

我想为 xmlrpc 规范编写一个 xsd(并使用 jaxb 从中生成 java 类)。 xmlrpc 规范允许如下值:

<value><int>123</int></value>
<value><boolean>1</boolean></value>

但同时它要求:

如果没有指定类型,则类型为字符串。

这意味着我可以收到类似这样的内容:

<value>test123</value>

相当于

<value><string>test123</string></value>

Is there a way to Define this in an x​​sd.

I want to write an xsd for the xmlrpc spec (and generate java classes out of it using jaxb). The xmlrpc spec allows values like:

<value><int>123</int></value>
<value><boolean>1</boolean></value>

But at the same time it requires:

If no type is indicated, the type is string.

Which means i could receive something like this:

<value>test123</value>

which is equivalent to

<value><string>test123</string></value>

Is there a way to define this in an xsd.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

瞳孔里扚悲伤 2024-09-09 10:42:27

是的,在 value 上设置混合内容模型:

<xs:complexType name="valuetype" mixed="true">
  <xs:sequence>
    <xs:element name="int" type="xs:int"/>
    <xs:element name="boolean" type="xs:boolean"/>
    ...
  </xs:sequence>
</xs:complexType>

Yes, set a mixed content model on value:

<xs:complexType name="valuetype" mixed="true">
  <xs:sequence>
    <xs:element name="int" type="xs:int"/>
    <xs:element name="boolean" type="xs:boolean"/>
    ...
  </xs:sequence>
</xs:complexType>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文