5

我正在尝试将 schematron 验证添加到我的 xsd。这是我的新 xsd :

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
    xmlns:sch="http://www.ascc.net/xml/schematron"    
    elementFormDefault="qualified" &gt;

 <xs:element name="books"> 
  <xs:complextype>
   <xs:sequence>   ;P 
    <xs:element name="book" type="bookType" maxoccurs="unbounded">
      <xs:annotation>
       <xs:appinfo>
        <sch:pattern id="onLoanTests" xmlns:sch="http://purl.oclc.org/dsdl/schematron">
          <sch:rule context="book">
           <sch:report test="@on-loan and not(@return-date)">
           Every book that is on loan must have a return date
           </sch:report>
          </sch:rule>
        </sch:pattern>
       </xs:appinfo>
      </xs:annotation>
    </xs:element>
   </xs:sequence> 
  </xs:complextype>
 </xs:element>

 <xs:complextype name="bookType">
  <xs:sequence>
   <xs:element name="title" type="xs:string" />
   <xs:element name="author" type="xs:string" />
   <xs:element name="publication-date" type="xs:string" />
  </xs:sequence>
  <xs:attribute name="publisher" type="xs:string" use="required" />
  <xs:attribute name="on-loan" type="xs:string" use="required" />
  <xs:attribute name="return-date" type="xs:string" use="optional" />
 </xs:complextype>

</xs:schema>

这是我的测试 xml:

<books>
<book publisher="ddd" on-loan="sdsd">
  <title>idan title</title> 
  <author>idan author</author> 
  <publication-date>idan date</publication-date> 
</book>
</books>

使用我提供的 xml 我没有收到验证错误。

我以为我会收到消息“每本借出的书都必须有归还日期”,并且 xml 将无效。关于为什么的建议?

更新 我确实设法通过在 oXygen xml 编辑器中使用 schematron 验证使其工作。但是,我应该如何在我的代码中使用?我需要安装一些特殊的东西吗?链接到另一个图书馆?

Update2 显然“处理”部分中,所有需要的步骤都详细说明了。

4

1 回答 1

8

您的第二次更新可能是对该主题的最佳参考。XSD 本身不允许您针对 schematron 以及模式本身进行验证的机制。该xsd:appinfo元素确实允许您嵌入不同模式语言的验证信息,但它专门供应用程序使用(因此得名)。

这意味着您需要做一些事情来启用它。您引用的论文提供了最好的方法,归结为:

  1. 使用 XSLT 从 XSD 中提取 schematron 规则
  2. 使用来自schematron.com的参考 XSLT 实现 将模式转换为 XSLT
  3. 根据 XSD 验证您的实例文档
  4. 通过处理在 2 中创建的 XSLT,根据 schematron 验证您的实例文档。

根据您的环境,您可能需要考虑查看XProc实现(calabashcalumet)来实现该管道。

于 2010-09-03T15:10:33.227 回答