当模式中的targetNamespace和XML中的名称空间被设置时,XmlDocument.Validate()会报错

本文关键字:Validate XmlDocument targetNamespace 模式 XML 空间 设置 | 更新日期: 2023-09-27 18:12:00

在c#中,我将以下XML文件加载到XmlDocument:

<?xml version="1.0" encoding="ISO-8859-1"?>
<shiporder orderid="889923" xmlns="http://www.example.com">
  <orderperson>John Smith</orderperson>
  <shipto>
    <name>Ola Nordmann</name>
    <address>Langgt 23</address>
    <city>4000 Stavanger</city>
    <country>Norway</country>
  </shipto>
  <item>
    <title>Empire Burlesque</title>
    <note>Special Edition</note>
    <quantity>1</quantity>
    <price>10.90</price>
  </item>
  <item>
    <title>Hide your heart</title>
    <quantity>1</quantity>
    <price>9.90</price>
  </item>
</shiporder> 

我用这个模式来验证它:

<?xml version="1.0" encoding="ISO-8859-1" ?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
           targetNamespace="http://www.example.com">
<xs:element name="shiporder">
  <xs:complexType>
    <xs:sequence>
      <xs:element name="orderperson" type="xs:string"/>
      <xs:element name="shipto">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="name" type="xs:string"/>
            <xs:element name="address" type="xs:string"/>
            <xs:element name="city" type="xs:string"/>
            <xs:element name="country" type="xs:string"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="item" maxOccurs="unbounded">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="title" type="xs:string"/>
            <xs:element name="note" type="xs:string" minOccurs="0"/>
            <xs:element name="quantity" type="xs:positiveInteger"/>
            <xs:element name="price" type="xs:decimal"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="orderid" type="xs:string" use="required"/>
  </xs:complexType>
</xs:element>
</xs:schema> 

NoticeEventArgs.Message中给出了这样的消息:

名称空间'http://www.example.com'中的元素'shiporder'有命名空间中无效的子元素'orderperson'"http://www.example.com"。预期的可能元素列表:"orderperson"。

但是,如果我删除XML文件中的名称空间和XSD文件中的targetNamespace,它将通过验证。如何解决?谢谢!

当模式中的targetNamespace和XML中的名称空间被设置时,XmlDocument.Validate()会报错

尝试在Schema文件中添加elementFormDefault="qualified"。默认情况下,属性值是不限定的,但在XML文件中,shiporder的子元素是限定的。这将使验证失败。