当使用Xmlbeans时,我注意到当一个元素被定义为来自混合类型的限制时,如果该元素中有一些文本,则Xmlbeans验证将失败。但是,如果我在模式验证中运行该XML文件,则该XML文件是有效的。 XmlSpy。这是示例(我试图使其尽可能简单):

xml模式:

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
    <xs:element name="RootElement">
        <xs:annotation>
            <xs:documentation>Comment describing your root element</xs:documentation>
        </xs:annotation>
        <xs:complexType>
            <xs:sequence>
                <xs:element ref="Child"/>
                <xs:element ref="ChildExtended"/>
                <xs:element ref="ChildRestricted"/>
            </xs:sequence>
        </xs:complexType>
    </xs:element>
    <xs:element name="Child" type="MixedType"/>
    <xs:element name="ChildRestricted" type="MixedTypeRestricted"/>
    <xs:element name="ChildExtended" type="MixedTypeExtended"/>
    <xs:complexType name="MixedType" mixed="true"/>
    <xs:complexType name="MixedTypeExtended" mixed="true">
        <xs:complexContent mixed="true">
            <xs:extension base="MixedType"/>
        </xs:complexContent>
    </xs:complexType>
    <xs:complexType name="MixedTypeRestricted" mixed="true">
        <xs:complexContent mixed="true">
            <xs:restriction base="MixedType"/>
        </xs:complexContent>
    </xs:complexType>
</xs:schema>


xml文件:

<RootElement xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Child>text</Child>
    <ChildExtended>text1</ChildExtended>
    <ChildRestricted>text2</ChildRestricted>
</RootElement>


对于XmlSpy,这是有效的。这是使用Xmlbeans验证时得到的信息:

Message: Element 'ChildRestricted' with empty content type cannot have text or element content.
Location of invalid XML: <xml-fragment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>


如您所见,导致问题的原因仅是定义为受限类型的子级。我的问题是:谁是对的? XmlSpy(无错误)或Xmlbeans?

最佳答案

正如您在问题XMLBEANS-457中创建的注释中所述,revision 1102771解决了该问题。

关于java - 混合元素和受限元素无法通过Xmlbeans验证,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6279564/

10-11 05:18