我想在grails中针对xsd 1.1验证xml文档。
我的验证代码:
def checkXmlAgainstXsd(InputStream xsd, InputStream xml) throws IOException, SAXException {
def factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI)
def schema = factory.newSchema(new StreamSource(xsd))
def validator = schema.newValidator()
validator.validate(new StreamSource(xml))
}
如何验证xsd 1.1?
当我尝试这个xsd时:
<?xml version="1.1"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="WaitForSoap">
<xs:complexType mixed="true">
<xs:all>
<xs:element name="Firstname" maxOccurs="3">
<xs:simpleType>
<xs:restriction base="xs:string"></xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Lastname" minOccurs="1">
<xs:simpleType>
<xs:restriction base="xs:string"></xs:restriction>
</xs:simpleType>
</xs:element>
</xs:all>
</xs:complexType>
</xs:element>
</xs:schema>
我收到错误:
org.xml.sax.SAXParseException; lineNumber: 5;
columnNumber: 9; cos-all-limited.2: The {max occurs} of an
element in an 'all' model group must be 0 or 1
对于某些转换,我已经使用了Saxon-HE 9.7.0-5
那么我该怎样做才能使我的应用程序针对XSD 1.1进行验证?
答案 0 :(得分:0)
如果您想使用Saxon作为架构验证引擎:
(A)首先确保您加载的架构处理器是Saxon-EE,并且您已安装许可证密钥。
(B)然后确保启用对XSD 1.1的支持。
对于(A),确保这一点的最简单方法是直接实例化Saxon-EE。我不知道Grails,所以我不能给你代码,但你想用“new com.saxonica.ee.jaxp.SchemaFactoryImpl”替换“SchemaFactory.newInstance(...)”。或者,您可以使用各种JAXP机制来选择要加载的工厂类。
对于(B)你可以:
(B1)将字符串“http://www.w3.org/XML/XMLSchema/v1.1”作为所需模式语言的标识符传递给newInstance()方法
(B2)在工厂调用isSchemaLanguageSupported("http://www.w3.org/XML/XMLSchema/v1.1")
(在Saxon实现中,这首先支持1.1,然后返回true)
(B3)调用factory.setProperty(“http://saxon.sf.net/feature/xsd-version”,“1.1”)