我有一個簡單的XSD使用XmlReaderSettingsXML驗證失敗
這裏通過的XmlSchemaSet對象和XML paresed加載的問題是我的XSD:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:element name="A">
<xs:complexType>
<xs:sequence>
<xs:element name="B">
<xs:complexType>
<xs:sequence>
<xs:element name="C" minOccurs="0" maxOccurs="unbounded">
<xs:complexType mixed="true">
<xs:sequence>
<xs:element name="Properties" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="Item" minOccurs="0">
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
這以下XML將在第5行上生成錯誤(「無法找到屬性'名稱'的架構信息。at 5:11行:
<A>
<B>
<C>
<Properties>
<Item Name="OBJECT">
<Item Name="CONTENT"/>
</Item>
</Properties>
</C>
</B>
</A>
我的XSD有什麼問題?
https://stackoverflow.com/questions/5303476/how-to-fix-error-could-not-find-schema-information-for-the-attribute-element – obl
@obi,沒有什麼在那個Q/A中對於這種情況很有用。 –