根据XSD错误验证XML:这是一个无效的xsi:类型

问题描述:

我正在C#中编写一个例程来验证使用XmlDocument的Xml文件。除了我无法理解的事情之外,一切似乎都很好。根据XSD错误验证XML:这是一个无效的xsi:类型

我的xml:

<?xml version="1.0" encoding="utf-8"?> 
<bdo_fosfec:RegistrosPagosElement xsi:type="bdo_fosfec:RegistrosPagos" 
xmlns:bdo_fosfec="http://asocajas.hp.com/bdo_fosfec" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 
<registro54 xsi:type="bdo_fosfec:Registro54"> 
    <registro82 xsi:type="bdo_fosfec:Registro82"> 
    ... 
    </registro82> 
</registro54> 
<registro54 xsi:type="bdo_fosfec:Registro54"> 
    <registro82 xsi:type="bdo_fosfec:Registro82"> 
    ... 
    </registro82> 
</registro54> 
</bdo_fosfec:RegistrosPagosElement> 

和XSD:

<?xml version="1.0" encoding="UTF-8"?> 
<xsd:schema xmlns="http://asocajas.hp.com/bdo_fosfec" xmlns:tns1="http://asocajas.hp.com/bdo_fosfec" xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://asocajas.hp.com/bdo_fosfec"> 
    <xsd:annotation> 
<xsd:documentation>BOMORIGIN::platform:/resource/bdo_Fosfec/Business%20Objects/bdo_Fosfec.bom#_rs4Sa9itEeSR9aIqvSWzoQ</xsd:documentation> 
    </xsd:annotation> 
    ... 
</xsd:schema> 

这里是我的代码来验证我对XSD XML,

XmlDocument xml = new XmlDocument(); 
xml.Schemas.Add("http://asocajas.hp.com/bdo_fosfec", PathFileXSD); 
//load my xml 
xml.LoadXml(stringXml); 

//event handler to manage the errors from XmlDocument object 
ValidationEventHandler veh = new ValidationEventHandler(ErrorValidacion); 

//validate my xml 
xml.Validate(veh); 

和事件处理ErrorValidacion将显示我错误

private void ErrorValidacion(object sender, ValidationEventArgs e) 
{ 
    string concat = string.Empty; 
    switch (e.Severity) 
    { 
     case XmlSeverityType.Error: 
      concat = string.Format("Error: {0}", e.Message); 
      break; 
     case XmlSeverityType.Warning: 
      concat = string.Format("Warning {0}", e.Message); 
      break; 
    } 
} 

当运行我的程序错误MSJ是:

This is an invalid xsi:type ' http://asocajas.hp.com/bdo_fosfec:RegistrosPagos '.

的事情是..为什么这个消息的?XSI:类型我的XML是不是

http://asocajas.hp.com/bdo_fosfec:RegistrosPagos

的XSI:键入我的xml是

xsi:type="bdo_fosfec:RegistrosPagos"

xsi:type http://asocajas.hp.com/bdo_fosfec:RegistrosPagos从哪里来?

那么,我怎样才能解决这个问题,而无需修改XML? (因为xml基于xslt)

错误消息是说XSD在http://asocajas.hp.com/bdo_fosfec名称空间中不包含对RegistrosPagos的声明。

它使用命名空间的扩展形式来报告错误而不是命名空间前缀,因为命名空间前缀是随意的,并且根据定义是无关紧要的。这是完全正确的。

实际上,您发布的XSD在http://asocajas.hp.com/bdo_fosfec命名空间中不包含RegistrosPagos

参见:How to restrict the value of an XML element using xsi:type in XSD?