使用C#和.net 3.5,我正在尝试针对具有include的架构来验证xml文档。

模式及其包括如下

Schema1.xsd->包含another.xsd

another.xsd->包含base.xsd

当我尝试将Schema1.xsd添加到XmlDocument时,出现以下错误。

类型'YesNoType'未声明或不是简单类型。

我相信我会收到此错误,因为加载Schema1.xsd架构时未包含base.xsd文件。

我正在尝试使用XmlSchemaSet类,并将XmlResolver uri设置为架构的位置。

注意:所有架构都位于同一目录E:\Dev\Main\XmlSchemas中

这是代码

string schemaPath = "E:\\Dev\\Main\\XmlSchemas";

XmlDocument xmlDocSchema = new XmlDocument();

XmlSchemaSet s = new XmlSchemaSet();

XmlUrlResolver resolver = new XmlUrlResolver();

Uri baseUri = new Uri(schemaPath);

resolver.ResolveUri(null, schemaPath);

s.XmlResolver = resolver;

s.Add(null, XmlReader.Create(new System.IO.StreamReader(schemaPath + "\\Schema1.xsd"), new XmlReaderSettings { ValidationType = ValidationType.Schema, XmlResolver = resolver }, new Uri(schemaPath).ToString()));


xmlDocSchema.Schemas.Add(s);

ValidationEventHandler valEventHandler = new ValidationEventHandler
(ValidateNinoDobEvent);

try
{
xmlDocSchema.LoadXml(xml);
xmlDocSchema.Validate(valEventHandler);
}
catch (XmlSchemaValidationException xmlValidationError)
{
// need to interogate the Validation Exception, for possible further
// processing.
string message = xmlValidationError.Message;
return false;
}

任何人都可以向我指出有关针对具有嵌套包含的模式验证xmldocument的正确方向。

最佳答案

我也有一个嵌套的模式案例,并且在验证中没有发现任何错误。我的代码看起来像下面那样。

private string strLogger = null;
    public bool ValidateXml(string path2XMLFile, string path2XSDFile)
    {
        bool isValidFile = false;
        try
        {
            XmlReaderSettings settings = new XmlReaderSettings();
            settings.ValidationType = ValidationType.Schema;
            settings.Schemas.Add(null, path2XSDFile);
            settings.ValidationEventHandler += new ValidationEventHandler(settings_ValidationEventHandler);
            XmlReader reader = XmlReader.Create(path2XMLFile, settings);
            while (reader.Read()) ;
            if (String.IsNullOrEmpty(strLogger))
            {
                isValidFile = true;
            }
        }
        catch (Exception ex)
        {
            LoggingHandler.Log(ex);
        }
        return isValidFile;
    }
    private void settings_ValidationEventHandler(object sender, ValidationEventArgs e)
    {
        strLogger += System.Environment.NewLine + "Validation Error Message  = [" + e.Message + "], " + "Validation Error Severity = [" + e.Severity + "], " + System.Environment.NewLine;
    }

关于c# - xmldocument和嵌套模式,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4647921/

10-17 01:21