处理双读取模式导致的错误

时间:2013-07-05 10:00:50

标签: c# xml validation xsd

如果xml文档没有对XML Schema的引用

,则一切正常
<Application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
             xsi:schemaLocation="http://www.companyname.com/blabla" 
             xmlns="http://www.companyname.com/blabla">

但是如果xml在本地机器上有对架构的引用,那么:

<Application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
             xsi:schemaLocation="http://www.companyname.com/blabla 
                                 Schemas\myschema.xsd" 
             xmlns="http://www.companyname.com/blabla">

这会导致错误“已声明全局元素'TopElementName'。

XmlReaderSettings xrs = new XmlReaderSettings();
xrs.ValidationType = ValidationType.Schema;
xrs.ValidationFlags |= XmlSchemaValidationFlags.ProcessInlineSchema;
xrs.ValidationFlags |= XmlSchemaValidationFlags.ProcessSchemaLocation;
xrs.ValidationFlags |= XmlSchemaValidationFlags.ReportValidationWarnings;

//xsd is located (intalled) in this same location where myapp.exe is. 
string startLoc = System.Reflection.Assembly.GetExecutingAssembly().Location;
string xsd = Path.Combine(Path.GetDirectoryName(startLoc), "myschema.xsd");

using (Stream schemaStr = new FileStream(xsd, FileMode.Open))
{
    XmlSchema s = XmlSchema.Read(schemaStr, null);
    xrs.Schemas.Add(s);
}
xrs.Schemas.Compile();

using (XmlReader r = XmlReader.Create(xmlPath, xrs))
{
    while (r.Read()){}
    r.Close();
}

如何避免此错误?

2 个答案:

答案 0 :(得分:0)

最简单的解决方案:使用选项调用您的架构处理器,该选项告诉它读取您在调用时指定的架构文档,并忽略正在验证的输入中的xsi:schemaLocation提示。 (如果您的模式验证器没有这样的选项,请获取新的模式验证器。)

第一个示例中的伪造xsi:schemaLocation应该是固定的,与验证选项无关。

答案 1 :(得分:0)

我刚刚删除了以下标志:

XmlSchemaValidationFlags.ProcessSchemaLocation