XSD键/ keyref初学者问题

时间:2010-01-06 17:56:18

标签: xml xsd schema keyref

我正在尝试实现一个非常简单的XML架构约束。

  

元素的 idref 属性   类型< batz> 应该只是   允许有匹配的值   至少有一个 id 属性   元素< bar>

如果这对你没有任何意义,那么请看下面的示例XML文档,我认为它实际上解释了它比我试图用文字说的更好。

所以,问题:为什么xmllint让下面的schema / xml组合传递(它说文档是有效的)? 如何解决它以实现所需的约束?

架构:

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
    targetNamespace="test" xmlns="test" elementFormDefault="qualified">

    <xs:element name="foo">
        <xs:complexType>
            <xs:sequence>
                <xs:element name="bar" minOccurs="0" maxOccurs="unbounded">
                    <xs:complexType>
                        <xs:attribute name="id" use="required" type="xs:string" />
                    </xs:complexType>
                </xs:element>
                <xs:element name="batz" minOccurs="0" maxOccurs="unbounded">
                    <xs:complexType>
                        <xs:attribute name="idref" use="required" type="xs:string" />
                    </xs:complexType>
                </xs:element>
            </xs:sequence>
        </xs:complexType>

        <xs:key name="ID">
            <xs:selector xpath="./bar" />
            <xs:field xpath="@id" />
        </xs:key>

        <xs:keyref name="IDREF" refer="ID">
            <xs:selector xpath="./batz" />
            <xs:field xpath="@idref" />
        </xs:keyref>

    </xs:element>
</xs:schema>

文件:

<?xml version="1.0"?>
<foo xmlns="test">
    <bar id="1" />
    <bar id="2" />
    <batz idref="1" /> <!-- this should succeed because <bar id="1"> exists -->
    <batz idref="3" /> <!-- this should FAIL -->
</foo>

2 个答案:

答案 0 :(得分:7)

即使使用指定的架构位置,这也不适用于所有解析器。

<?xml version="1.0"?>
<foo xmlns="test"   
     xsi:schemaLocation="test test.xsd"  
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <bar id="1" />
    <bar id="2" />
    <batz idref="1" /> <!-- this should succeed because <bar id="1"> exists -->
    <batz idref="3" /> <!-- this should FAIL -->
</foo>

这也将验证,因为密钥没有引用目标命名空间。

需要在XSD中进行的更改

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
    targetNamespace="test" 
    xmlns:t="test"
    xmlns="test" elementFormDefault="qualified">

<xs:key name="ID">
    <xs:selector xpath="./t:bar" />
    <xs:field xpath="@id" />
</xs:key>

<xs:keyref name="IDREF" refer="ID">
    <xs:selector xpath="./t:batz" />
    <xs:field xpath="@idref" />
</xs:keyref>

有关此行为的讨论,请参阅#1545101

答案 1 :(得分:2)

如图所示,您的XML文档不包含schemaLocation。当XML文档不引用模式或DTD时,它可以简单地通过格式良好的XML来通过验证。 (这曾经发生在一个同事身上,使用了一个不同的验证器。我认为这是一个错误,验证器至少没有发出警告说它错过了架构或DTD。但我离题了。)

无论如何,它可能应该是这样的:

<?xml version="1.0"?>
<foo
  xmlns="test" <!-- This is bad form, by the way... -->
  xsi:schemaLocation="test /path/to/schema/document"
    <bar id="1" />
    <bar id="2" />
    <batz idref="1" /> <!-- this should succeed because <bar id="1"> exists -->
    <batz idref="3" /> <!-- this should FAIL -->
</foo>