XSD XML - 使用限制时的验证错误

时间:2013-12-09 15:58:34

标签: xml xsd

我有两个有效的XSD文件(a.xsd和b.xsd)。我尝试针对Schema验证XML文件(example.xml)并获得错误。

有人可以向我解释,为什么我会收到验证错误?

THX


a.xsd

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="http://namespace/a" xmlns:a="http://namespace/a" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:complexType name="A">
    <xs:sequence>
      <xs:element name="E1" type="xs:token" form="unqualified"/>
      <xs:element name="E2" type="xs:token" form="unqualified" minOccurs="0"/>
    </xs:sequence>
  </xs:complexType>
</xs:schema>

b.xsd

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="http://namespace/b" xmlns:b="http://namespace/b" xmlns:a="http://namespace/a" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:import namespace="http://namespace/a" schemaLocation="a.xsd"/>
  <xs:element name="START" type="b:B"/>
  <xs:complexType name="B">
    <xs:complexContent>
      <xs:restriction base="a:A">
        <xs:sequence>
          <xs:element name="E1">
            <xs:simpleType>
              <xs:restriction base="xs:token">
                <xs:enumeration value="value1">
                  <xs:annotation>
                    <xs:appinfo>
                      <codeName>value1</codeName>
                    </xs:appinfo>
                  </xs:annotation>
                </xs:enumeration>
                <xs:enumeration value="value2">
                  <xs:annotation>
                    <xs:appinfo>
                      <codeName>value2</codeName>
                    </xs:appinfo>
                  </xs:annotation>
                </xs:enumeration>
                <xs:enumeration value="value3">
                  <xs:annotation>
                    <xs:appinfo>
                      <codeName>value3</codeName>
                    </xs:appinfo>
                  </xs:annotation>
                </xs:enumeration>
              </xs:restriction>
            </xs:simpleType>
          </xs:element>
        </xs:sequence>
      </xs:restriction>
    </xs:complexContent>
  </xs:complexType>
</xs:schema>

的example.xml

<?xml version="1.0" encoding="UTF-8"?>
<b:START xmlns="http://namespace/a" xmlns:b="http://namespace/b" xsi:schemaLocation="http://namespace/b C:\problem\b.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <E1>value1</E1>
</b:START>

1 个答案:

答案 0 :(得分:2)

您的示例XML中的xmlns="http://namespace/a"声明会抛出您的XML ...这是因为您的a.xsd使用form="unqualified"/属性来定义E1和E2。

该属性的作用是它拒绝了元素的命名空间,也就是说这些元素必须没有命名空间 - 它们不合格。

要修复XML,您可以根据示例选择两个选项:

从根元素中删除xmlns="http://namespace/a"

<?xml version="1.0" encoding="UTF-8"?>
<b:START xmlns:b="http://namespace/b" xsi:schemaLocation="http://namespace/b b.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <E1>value1</E1>
</b:START>

或者,将xmlns =“”添加到您的E1元素:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<!-- Sample XML generated by QTAssistant (http://www.paschidev.com) -->
<START xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:a="http://namespace/a" xmlns="http://namespace/b">
    <E1 xmlns="">value1</E1>
</START>

可能还有其他变体,但最后,上述内容对于理解如何最终在元素级别覆盖命名空间(基本上是作用域)至关重要。