如果存在 DTD DOCTYPE,Xerces 强制执行元素声明
Xerces enforces Element declarations if DTD DOCTYPE is present
我有以下 XML 文档:
<!DOCTYPE root [<!ENTITY foo "bar">]>
<root>
<child>&foo;</child>
</root>
我想根据以下 XSD 模式验证它:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
<xs:element name="root">
<xs:complexType>
<xs:sequence>
<xs:element name="child" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
为此我使用了一个小的 ANT 脚本:
<project basedir="." name="schema-validation-test" default="test">
<target name="test">
<schemavalidate failonerror="true" file="src.xml" nonamespacefile="schema.xsd">
</schemavalidate>
</target>
</project>
尽管 XML 结构对 XSD 是有效的,但我得到了错误:
[schemavalidate] ...\src.xml:2:7: Elementtyp "root" muss deklariert werden.
[schemavalidate] ...\src.xml:3:12: Elementtyp "child" muss deklariert werden.
(原文,翻译过来就是:'Element type "root" must be declared'
)
我想我知道会发生什么:Xerces 找到 DTD 声明并尝试根据它验证 XML。我需要关闭 DTD 验证(而不关闭完整验证)或指定没有声明的元素或属性不会产生错误。我经常使用 Xerces 功能 (https://xerces.apache.org/xerces-j/features.html),但没有找到令人满意的设置。
感谢任何帮助或提示!
版本信息:
- Java: 1.8.0_211
- 蚂蚁:1.9.13
- Xerces:不确定,如何找到?
更新: 找到了我的 Xerces 版本:Xerces-J 2.7.1(对于 ant,执行:<java classname="com.sun.org.apache.xerces.internal.impl.Version"/>
)
注:我这里使用的是Ant,但如果你在Java中有解决方案,它也可能会有所帮助。
我认为您需要设置“schemaLanguage”属性。像这样:
<project basedir="." name="schema-validation-test" default="test">
<target name="test">
<schemavalidate file="src.xml" noNamespaceFile="schema.xsd" failonerror="true">
<property name="http://java.sun.com/xml/jaxp/properties/schemaLanguage" value="http://www.w3.org/2001/XMLSchema"/>
</schemavalidate>
</target>
</project>
此致,
屋大维
我有以下 XML 文档:
<!DOCTYPE root [<!ENTITY foo "bar">]>
<root>
<child>&foo;</child>
</root>
我想根据以下 XSD 模式验证它:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
<xs:element name="root">
<xs:complexType>
<xs:sequence>
<xs:element name="child" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
为此我使用了一个小的 ANT 脚本:
<project basedir="." name="schema-validation-test" default="test">
<target name="test">
<schemavalidate failonerror="true" file="src.xml" nonamespacefile="schema.xsd">
</schemavalidate>
</target>
</project>
尽管 XML 结构对 XSD 是有效的,但我得到了错误:
[schemavalidate] ...\src.xml:2:7: Elementtyp "root" muss deklariert werden.
[schemavalidate] ...\src.xml:3:12: Elementtyp "child" muss deklariert werden.
(原文,翻译过来就是:'Element type "root" must be declared'
)
我想我知道会发生什么:Xerces 找到 DTD 声明并尝试根据它验证 XML。我需要关闭 DTD 验证(而不关闭完整验证)或指定没有声明的元素或属性不会产生错误。我经常使用 Xerces 功能 (https://xerces.apache.org/xerces-j/features.html),但没有找到令人满意的设置。
感谢任何帮助或提示!
版本信息:
- Java: 1.8.0_211
- 蚂蚁:1.9.13
- Xerces:不确定,如何找到?
更新: 找到了我的 Xerces 版本:Xerces-J 2.7.1(对于 ant,执行:<java classname="com.sun.org.apache.xerces.internal.impl.Version"/>
)
注:我这里使用的是Ant,但如果你在Java中有解决方案,它也可能会有所帮助。
我认为您需要设置“schemaLanguage”属性。像这样:
<project basedir="." name="schema-validation-test" default="test">
<target name="test">
<schemavalidate file="src.xml" noNamespaceFile="schema.xsd" failonerror="true">
<property name="http://java.sun.com/xml/jaxp/properties/schemaLanguage" value="http://www.w3.org/2001/XMLSchema"/>
</schemavalidate>
</target>
</project>
此致, 屋大维