How to link XML to XSD using schemaLocation or noNamespaceSchemaLocation?

后端 未结 1 1650
一生所求
一生所求 2020-11-22 08:32

I found some tips for this problem, but still didn\'t help me.

Here is my XML




        
相关标签:
1条回答
  • 2020-11-22 09:26

    How to link an XSD to an XML document depends upon whether the XML document is using namespaces or not...

    Without namespaces

    Use xsi:noNamespaceSchemaLocation to provide a hint as to the XSD to be used:

    • XML

      <root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xsi:noNamespaceSchemaLocation="example.xsd">
        <!-- ... -->
      </root>
      
    • XSD

      <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
        <xsd:element name="root">
          <!-- ... -->
        </xsd:element>
      </xsd:schema>
      

    With namespaces

    Use xsi:schemaLocation to provide a hint as to the XSD to be used:

    • XML

      <ns:root xmlns:ns="http://example.com/ns"
               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
               xsi:schemaLocation="http://example.com/ns example-ns.xsd">
        <!-- ... -->
      </ns:root>
      
    • XSD

      <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                  targetNamespace="http://example.com/ns">
        <xsd:element name="root">
          <!-- ... -->
        </xsd:element>
      </xsd:schema>
      
    0 讨论(0)
提交回复
热议问题