在针对架构验证以下 XML 时,除非以命名空间为前缀,否则 KeyB 的引用属性将被标记为缺失/未声明。声明为“内联”的 KeyA 的类似属性验证良好。谁可以给我解释一下这个?(注意:使用 .NET 的 XmlReader 进行验证)。
架构:
<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="so"
targetNamespace="http://test/so.xsd"
elementFormDefault="qualified"
xmlns="http://test/so.xsd"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:attribute name="Id" type="xs:unsignedByte" />
<xs:attribute name="Index" type="xs:unsignedByte" />
<xs:element name="KeyA">
<xs:complexType>
<xs:attribute name="Id" type="xs:unsignedByte" use="required" />
<xs:attribute name="Index" type="xs:unsignedByte" use="required" />
</xs:complexType>
</xs:element>
<xs:element name="KeyB">
<xs:complexType>
<xs:attribute ref="Id" use="required" />
<xs:attribute ref="Index" use="required" />
</xs:complexType>
</xs:element>
<xs:element name="Keys">
<xs:complexType>
<xs:all>
<xs:element ref="KeyA"/>
<xs:element ref="KeyB"/>
</xs:all>
</xs:complexType>
</xs:element>
</xs:schema>
XML 实例示例:
<?xml version="1.0" encoding="utf-8" ?>
<Keys xmlns="http://test/so.xsd">
<KeyA Id="0" Index="3"/>
<KeyB Id="0" Index="3"/>
</Keys>
我收到以下 KeyB 元素的错误消息:
The required attribute 'http://test/so.xsd:Index' is missing.
The required attribute 'http://test/so.xsd:Id' is missing.
The 'Index' attribute is not declared.
The 'Id' attribute is not declared.