我有一个项目,需要在其中将schematron添加到我的xsd中。 问题是我正在使用不允许验证schematron的xmllint,我发现了其他解决方案,例如使用xsltproc和iso-schematron,但这使我不得不将iso-schematron文件夹添加到我的项目中。
您有使用bash命令验证schematron的更简单解决方案吗?
我使用了this method,我想使用this process进行测试,但这似乎比我的第一个解决方案复杂。
XSD代码:
<xs:element name="worker">
<xs:annotation>
<xs:appinfo>
<sch:pattern name="Testing schematron" xmlns:sch="http://purl.oclc.org/dsdl/schematron">
<sch:rule context="worker">
<sch:assert test="id>2"
You have to respect de schema.
</sch:assert>
</sch:pattern>
</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="id" type="xs:token"/>
</xs:sequence>
</xs:complexType>
</xs:element>
xml代码:
<worker>
<id>3</id>
</worker>
解决方案重击:
echo XSD validation
xsltproc iso-schematron-xslt/ExtractSchFromXSD.xsl my_xsd_schema.xsd > schema.sch
xsltproc iso-schematron-xslt/iso_dsdl_include.xsl schema.sch > step1.xsl
xsltproc iso-schematron-xslt/iso_abstract_expand.xsl step1.xsl > step2.xsl
xsltproc iso-schematron-xslt/iso_svrl_for_xslt1.xsl step2.xsl > step3.xsl
xsltproc step3.xsl my_xml_code.xml
rm schema.sch
rm step1.xsl
rm step2.xsl
rm step3.xsl