我正在创建一个XSD架构来验证XML文件。
对于W3C XML Schema (XSD) Validation page,架构是正确的,而对于QXmlSchema,则存在错误。这是生成错误的最小XSD部分:
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://standards.ieee.org/IEEE1516-2010" xmlns:ns="http://standards.ieee.org/IEEE1516-2010" targetNamespace="http://standards.ieee.org/IEEE1516-2010" elementFormDefault="qualified" attributeFormDefault="unqualified" version="2010">
<xs:element name="objectModel" type="objectModelType">
</xs:element>
<xs:complexType name="objectModelType">
<xs:sequence>
<xs:element name="modelIdentification" type="modelIdentificationType">
<xs:annotation>
<xs:documentation>documents certain key identifying information within the object model description</xs:documentation>
</xs:annotation>
</xs:element>
<xs:any namespace="##other" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="modelIdentificationType">
<xs:sequence>
<xs:element name="name" type="NonEmptyString">
<xs:annotation>
<xs:documentation>specifies the name assigned to the object model</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="glyph" minOccurs="0">
<xs:annotation>
<xs:documentation>specifies a glyph to visually represent the model</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:simpleContent>
<xs:extension base="glyphType"/>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:any namespace="##other" minOccurs="0"/>
</xs:sequence>
<xs:attributeGroup ref="commonAttributes"/>
</xs:complexType>
<xs:complexType name="String">
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attributeGroup ref="commonAttributes"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="NonEmptyString">
<xs:simpleContent>
<xs:extension base="nonEmptyString">
<xs:attributeGroup ref="commonAttributes"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="glyphType" mixed="true">
<xs:simpleContent>
<xs:extension base="xs:base64Binary">
<xs:attributeGroup ref="commonAttributes"/>
<xs:attribute name="href" type="xs:anyURI"/>
<xs:attribute name="type" type="glyphTypeUnion"/>
<xs:attribute name="height" type="xs:short"/>
<xs:attribute name="width" type="xs:short"/>
<xs:attribute name="alt" type="xs:string"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="IdentifierType">
<xs:simpleContent>
<xs:extension base="xs:NCName">
<xs:attributeGroup ref="commonAttributes"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="nonEmptyString">
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="glyphTypeUnion">
<xs:union memberTypes="glyphTypeEnumerations xs:string"/>
</xs:simpleType>
<xs:simpleType name="glyphTypeEnumerations">
<xs:restriction base="xs:string">
<xs:enumeration value="BITMAP"/>
<xs:enumeration value="JPG"/>
<xs:enumeration value="GIF"/>
<xs:enumeration value="PNG"/>
<xs:enumeration value="TIFF"/>
</xs:restriction>
</xs:simpleType>
<xs:attributeGroup name="commonAttributes">
<xs:attribute name="notes" type="xs:IDREFS" use="optional"/>
<xs:attribute name="idtag" type="xs:ID" use="optional"/>
<xs:anyAttribute namespace="##other"/>
</xs:attributeGroup>
</xs:schema>
如果我将此架构复制并粘贴到W3C页面,它表示没问题。
我以这种方式在我的程序中创建架构:
QXmlSchema schema;
// text is a char array containing the XML file.
schema.load(text);
当我调用load
方法时,调试控制台窗口中会显示以下消息:
Error XSDError in Unknown location, at line 52, column 22: complexType element with simpleContent child element must not have a mixed attribute.
如果我转到消息中显示的行号,我可以看到complexType是以下一行:
<xs:complexType name="glyphType" mixed="true">
<xs:simpleContent>
<xs:extension base="xs:base64Binary">
<xs:attributeGroup ref="commonAttributes"/>
<xs:attribute name="href" type="xs:anyURI"/>
<xs:attribute name="type" type="glyphTypeUnion"/>
<xs:attribute name="height" type="xs:short"/>
<xs:attribute name="width" type="xs:short"/>
<xs:attribute name="alt" type="xs:string"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
通过查看XSD的这一部分,我似乎很清楚错误消息,但我不知道为什么这应该是一个错误。
所以对于W3C页面来说这是正确的,因为Qt是错误的。哪一个具有简单内容的复杂类型的正确解释?
这是应该验证的XML的最小示例(它在网页中):
<?xml version="1.0" encoding="utf-8"?>
<objectModel xmlns="http://standards.ieee.org/IEEE1516-2010" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://standards.ieee.org/IEEE1516-2010 http://standards.ieee.org/downloads/1516/1516.2-2010/IEEE1516-DIF-2010.xsd">
<modelIdentification>
<name>New</name>
</modelIdentification>
</objectModel>
简单的内容说元素只包含文本(字符数据),混合说元素可以包含文本和子元素的混合,因此两者都是矛盾的。
撒克逊拒绝它:
Error at xs:complexType on line 2 column 51 of test.xsd:
The <complexType> must not specify mixed='true' when <simpleContent> is present
我在XSD1.0§3.4.3中找到了这个注释
注意:虽然未在此处或Schema for Schema(规范)(§A)中明确排除,但在选择<xs:complexType . . .mixed='true'
替代时指定<simpleContent>
对相应的组件没有影响,应该避免。这可以在本说明书的后续版本中排除。
所以这是无稽之谈,并且强烈反对,但根据XSD 1.0,它实际上似乎并不违法。
XSD 1.1使其成为非法:§3.4.3第1条:如果选择了<simpleContent>
替代方案,则<complexType>
元素不得具有mixed = true
。