如何解决“找到无效内容”错误?

时间:2016-11-06 17:13:48

标签: xml xsd xsd-validation xml-validation

我有以下XSD:

<?xml version="1.0"?>
<xs:schema xmlns:item="http://www.example.org/ItemSchema"
           targetNamespace="http://www.example.org/ItemSchema"
           xmlns:xs="http://www.w3.org/2001/XMLSchema">

    <xs:simpleType name="Item">
        <xs:restriction base="xs:string">
            <xs:pattern value="[a-fA-F]"/>
            <xs:length value="1"/>
        </xs:restriction>
    </xs:simpleType>

    <xs:complexType name="ItemWithAttr">
        <xs:simpleContent>
            <xs:extension base="item:Item">
                <xs:attribute name="C" use="required">
                    <xs:simpleType>
                        <xs:restriction base="xs:positiveInteger">
                            <xs:pattern value="[0-9]{4}"/>
                        </xs:restriction>
                    </xs:simpleType>
                </xs:attribute>
            </xs:extension>
        </xs:simpleContent>
    </xs:complexType>

    <xs:element name="A">
        <xs:complexType>
            <xs:all>
                <xs:element name="B" type="item:ItemWithAttr" minOccurs="0"/>
                <xs:element name="D" type="item:ItemWithAttr" minOccurs="0"/>
            </xs:all>
        </xs:complexType>
    </xs:element>

</xs:schema>

以下XML:

<?xml version="1.0" encoding="UTF-8"?>
<A xmlns="http://www.example.org/ItemSchema"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://www.example.org/ItemSchema abcd.xsd">
    <B C="0231">a</B>
    <B C="3124">a</B>
    <B C="4114">b</B>
    <B C="0312">b</B>
    <B C="1543">d</B>
    <B C="2345">b</B>
    <D C="1111">d</D>
    <D C="4321">b</D>
</A>

我尝试针对XSD here验证XML,并且遇到了这个错误:

  

无效。错误 - 第5行,第17行:org.xml.sax.SAXParseException;   lineNumber:5; columnNumber:17; cvc-complex-type.2.4.a:无效   找到以元素'B'开头的内容。其中一个'{B,D}'是   预期

它出了什么问题?一切似乎都是正确的。

1 个答案:

答案 0 :(得分:1)

对您的XSD进行以下更正(#3最难发现):

  1. maxOccurs="unbounded"添加到BD的声明中 因为您的XML中有多个BD元素,以及default for @maxOccurs is 1
  2. xs:all更改为xs:sequence,因为xs:all个孩子不能 在XSD 1.0中无限制(因为你的XML中有一个序列) 反正)。
  3. 添加elementFormDefault="qualified",因为默认元素为 使用本地声明在XML文档中不合格
  4. 总而言之,这个XSD将验证您的XML:

    <?xml version="1.0"?>
    <xs:schema xmlns:item="http://www.example.org/ItemSchema"
               targetNamespace="http://www.example.org/ItemSchema"
               xmlns:xs="http://www.w3.org/2001/XMLSchema"
               elementFormDefault="qualified">    
      <xs:simpleType name="Item">
        <xs:restriction base="xs:string">
          <xs:pattern value="[a-fA-F]"/>
          <xs:length value="1"/>
        </xs:restriction>
      </xs:simpleType>
      <xs:complexType name="ItemWithAttr">
        <xs:simpleContent>
          <xs:extension base="item:Item">
            <xs:attribute name="C" use="required">
              <xs:simpleType>
                <xs:restriction base="xs:positiveInteger">
                  <xs:pattern value="[0-9]{4}"/>
                </xs:restriction>
              </xs:simpleType>
            </xs:attribute>
          </xs:extension>
        </xs:simpleContent>
      </xs:complexType>    
      <xs:element name="A">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="B" type="item:ItemWithAttr" 
                        minOccurs="0" maxOccurs="unbounded"/>
            <xs:element name="D" type="item:ItemWithAttr" 
                        minOccurs="0" maxOccurs="unbounded"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:schema>