XSD 是否同时允许 simpleContent 和complexContent?
我想为 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 xsd.
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,在
value
上设置混合内容模型:Yes, set a mixed content model on
value
: