我的目标是创建一个正确引用描述结构的 XSD 文件的 XML,而这两个文件都使用命名空间(通过在xmlns
属性中设置默认命名空间来创建 XML)。
我可以xsi:noNamespaceSchemaLocation
在 XML 中指定属性,并且它至少在某些验证器中有效(例如http://www.validome.org/xml/validate/)。但是当我尝试添加命名空间时,验证器会返回错误(例如:找不到元素“note”的声明。)
我准备的测试文件的最终版本附在下面。我用xmllint
这样的方式测试了它:
xmllint example.xml --schema example.xsd
它有效,但我在参数中指定了模式位置。我的问题是:XML 文件是否正确引用了 XSD,是否正确使用了命名空间?为什么验证器返回错误?
示例.xml:
<?xml version="1.0" encoding="UTF-8"?>
<note
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="example.xsd"
xmlns="http://example/note"
>
<from>Jacek</from>
<to>Agatka</to>
<body>Kocham cię!</body>
</note>
例子.xsd:
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns="http://example/note"
targetNamespace="http://example/note"
>
<xsd:element name="note">
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="from"/>
<xsd:element ref="to"/>
<xsd:element ref="body"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="from" type="xsd:string"/>
<xsd:element name="to" type="xsd:string"/>
<xsd:element name="body" type="xsd:string"/>
</xsd:schema>