0

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'には、名前空間'http://www.example.com'の無効な子要素'orderperson'があります。予想される可能な要素のリスト:'orderperson'。

ただし、XMLファイルとtargetNamespaceXSDファイルで名前空間を削除すると、検証に合格します。どのようにそしてどのようにそれを修正するのですか?ありがとう!

4

1 に答える 1

1

elementFormDefault="qualified"をスキーマファイルに追加してみてください。デフォルトでは、属性値は非正規化されていますが、XMLファイルでは、shiporderの子要素が修飾されています。これにより、検証が失敗します。

于 2011-10-23T06:45:47.253 に答える