我在C#中编写一个例程来使用XmlDocument验证Xml文件。除了我无法理解的东西外,一切似乎都很好。
我的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为:
这是一个无效的xsi:type&#39; http://asocajas.hp.com/bdo_fosfec:RegistrosPagos&#39;。
事情是..为什么这条消息?,我的xml的xsi:type不是
我的xml的xsi:type是
的xsi:type =&#34; bdo_fosfec:RegistrosPagos&#34;
xsi:type http://asocajas.hp.com/bdo_fosfec:RegistrosPagos来自哪里?
那么,如何在不修改xml的情况下解决这个问题呢? (因为xml基于xslt)
答案 0 :(得分:0)
错误消息表明XSD未在RegistrosPagos
命名空间中包含http://asocajas.hp.com/bdo_fosfec
的声明。
它使用命名空间的扩展形式来报告错误而不是命名空间前缀,因为命名空间前缀是任意的,并且根据定义无关紧要。这是完全正确的。
事实上,您发布的XSD在RegistrosPagos
命名空间中不包含http://asocajas.hp.com/bdo_fosfec
。
另请参阅: How to restrict the value of an XML element using xsi:type in XSD?