下面是我的xsd和xml的简化版本。 我试图检查每个OrderedPart @ rPartId在Part @ PartId中是否有有效匹配。
我尝试过的所有工具都告诉我这个XML对这个xsd有效。 但是第二个命令应该给出错误,因为67不是有效的Part @ PartId。
XSD
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://localhost" xmlns="http://localhost" targetNamespace="http://localhost" elementFormDefault="qualified" attributeFormDefault="unqualified" >
<xs:element name="root">
<xs:complexType>
<xs:sequence>
<xs:element name="Order" type="OrderType" maxOccurs="unbounded"/>
<xs:element name="Parts" type="PartType"/>
</xs:sequence>
</xs:complexType>
<xs:keyref name="dummy" refer="pNumKey">
<xs:selector xpath="tns:OrderedPart" />
<xs:field xpath="@rPartId"/>
</xs:keyref>
<xs:key name="pNumKey">
<xs:selector xpath="tns:Part"/>
<xs:field xpath="@PartId"/>
</xs:key>
</xs:element>
<xs:complexType name="OrderType">
<xs:sequence>
<xs:element name="OrderedPart" maxOccurs="unbounded">
<xs:complexType>
<xs:attribute name="rPartId" type="xs:integer"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="PartType">
<xs:sequence>
<xs:element name="Part" maxOccurs="unbounded">
<xs:complexType>
<xs:attribute name="PartId" type="xs:integer"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:schema>
和XML:
<?xml version="1.0" encoding="UTF-8" ?>
<root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="KeyRefs.xsd" xmlns="http://localhost" >
<Order>
<OrderedPart rPartId="1"/>
</Order>
<Order>
<OrderedPart rPartId="67"/> <!-- validation should give error -->
</Order>
<Parts>
<Part PartId="1"/>
</Parts>
</root>
怀疑它与选择器中的xPaths和/或命名空间有关。 根据本网站上其他帖子的输入,我使用了命名空间组合,但无法使其正常工作。
欢迎任何建议。
(因为OP的更新似乎失去了一些XSD)
答案 0 :(得分:1)
XSD的主要问题是您没有正确使用选择器。 选择器相对于它们所属的元素,如XSD specs中所述:
{selector}指定相对的受限XPath([XPath])表达式 到被声明的元素的实例。
因此,您需要将xpath选择器更改为tns:Order/tns:OrderedPart
和tns:Parts/tns:Part
,以便选择正确的元素。
此外,您使用PartId
属性作为键,但它被定义为可选属性。通常这不是一个理想的行为,因为如果密钥不存在则会出错,因此您可以在属性中使用use="required"
。