3

在针对架构验证以下 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.
4

1 回答 1

2

嗯,这很容易。

本地属性(即您所说的声明的“内联”)可能是合格的,也可能不是。“合格”大致意味着将需要命名空间前缀。

这由attributeFormDefault您的<xs:schema>. 如果您已指定:

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

....

那么,所有本地属性都必须是合格的。

但默认情况下, 的attributeFormDefault值为"unqualified"。因此,当您错过它时,您的所有本地属性都是不合格的(不需要命名空间前缀)。

关于全局属性(并且只有它们可以通过引用包含在内),它们必须始终限定的。这实际上是全局声明的任何内容(以及元素)的规则。

于 2013-07-10T18:30:25.507 回答