XML Schema 1.1无法识别'assert'或'assertion'

时间:2013-03-22 15:19:42

标签: xml xsd xsd-validation xsd-1.1

我正在尝试在 XSD

中使用以下内容
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" >
<xs:element name="dimension">
  <xs:complexType>
    <xs:attribute name="height" type="xs:int"/>
    <xs:attribute name="width" type="xs:int"/>
    <xs:assert test="@height = @width"/>
  </xs:complexType>
</xs:element>

我知道assert / assertion是XML Schema 1.1的一部分,但不是1.0。但是我读过的所有内容都表明名称空间对于两者都是相同的:http://www.w3.org/2001/XMLSchema

一个小问题是我用来编写Schema(Microsoft Visual Studio)的程序无法识别'assert'元素,在命名空间中说'element complexType (... )具有无效的子元素'断言'。

主要的问题是,当我实际尝试使用xmllint对此模式验证XML时,会抛出错误说

" element assert: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}complexType': The content is not valid. Expected is (annotation?, (simpleContent | complexContent | ((group | all | choice | sequence)?, ((attribute | attributeGroup)*, anyAttribute?))))

尽管被指向了1.1名称空间,xmllint / visual studio却无法识别1.1吗?

1 个答案:

答案 0 :(得分:18)

要处理XSD 1.1架构,您需要一个XSD 1.1架构处理器。微软没有提供(他们似乎放弃了实施新的W3C XML规范)。据我所知,.NET平台上唯一可用的XSD 1.1处理器是Saxonica的。