如何在XML中指定命名空间和模式位置?

时间:2013-04-19 15:43:14

标签: xml xsd xml-namespaces

我的目标是创建一个正确引用描述结构的XSD文件的XML,同时两个文件都使用名称空间(通过在xmlns属性中设置默认名称空间来使用XML)。

我可以在XML中指定xsi:noNamespaceSchemaLocation属性,它至少在某些验证器中起作用(如http://www.validome.org/xml/validate/)。但是当我尝试添加名称空间时,验证程序返回错误(例如:找不到元素'note'的声明。)

我准备的测试文件的最终版本如下。我用xmllint测试了它,如:

xmllint example.xml --schema example.xsd

并且它有效,但我在参数中指定了架构位置。我的问题是:XML文件是否正确引用XSD并正确使用命名空间?为什么验证器会返回错误?

的example.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>

example.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>

1 个答案:

答案 0 :(得分:3)

schemaLocation属性还应指定命名空间:

<?xml version="1.0" encoding="utf-8"?>
<note
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://example/note example.xsd"
  xmlns="http://example/note">
  <from>Jacek</from>
  <to>Agatka</to>
  <body>Kocham cię!</body>
</note>

请参阅文档here