有人能告诉我在c#中使用XSD验证XML时哪里出错了吗?

本文关键字:XML 出错 错了 验证 XSD 告诉我 | 更新日期: 2023-09-27 18:17:29

大家好,我的XML文件如下

XML名称XMLFile2.xml

<?xml version="1.0"?>
<Product ProductID="123"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="Product.xsd">
<ProductName>XYZ</ProductName>
</Product>

我的XSD如下

<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="Product"
targetNamespace="http://tempuri.org/Product.xsd"
elementFormDefault="qualified"
xmlns="http://tempuri.org/Product.xsd"
xmlns:mstns="http://tempuri.org/Product.xsd"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="Product">
<xs:complexType>
  <xs:sequence>
    <xs:element name="ProductName" type="xs:string"></xs:element>
  </xs:sequence>
  <xs:attribute name="ProductID" type="xs:int" use="required"/>
</xs:complexType>
 </xs:element>

这是我的代码

string strPath = Server.MapPath("XMLFile2.xml");
XmlTextReader r = new XmlTextReader(strPath);
XmlValidatingReader v = new XmlValidatingReader(r);
v.ValidationType = ValidationType.Schema;
v.ValidationEventHandler +=
new ValidationEventHandler(MyValidationEventHandler);
while (v.Read())
    {
    }
v.Close();
    if (isValid)
        Response.Write("Document is valid");
    else
        Response.Write("Document is invalid");

我得到以下错误

Validation event
The targetNamespace parameter '' should be the same value as the targetNamespace 'http://tempuri.org/Product.xsd' of the schema.Validation event
The 'Product' element is not declared.Validation event
Could not find schema information for the attribute 'ProductID'.Validation event
The 'ProductName' element is not declared.Document is invalid

谁能告诉我哪里出错了?

有人能告诉我在c#中使用XSD验证XML时哪里出错了吗?

XSD设置为验证"http://tempuri.org/Product.xsd"名称空间,但是XML只包含来自""名称空间的元素。

您需要(a)更改XML文件以使用"http://tempuri.org/Product.xsd"名称空间,或者(b)更改XSD文件以使用""名称空间,具体取决于您的用户需求。