Использование c # и .net 3.5 Я пытаюсь проверить документ xml по схеме, которая включает в себя.
Схемы и там, как показано ниже
Schema1.xsd -> include another.xsd
another.xsd -> include base.xsd
Когда я пытаюсь добавить Schema1.xsd в XmlDocument, я получаю следующую ошибку.
Тип 'YesNoType' не объявлен или не является простым типом.
Я полагаю, что получаю эту ошибку, потому что файл base.xsd не включается при загрузке схемы Schema1.xsd.
Я пытаюсь использовать класс XmlSchemaSet, и я устанавливаю URI XmlResolver в расположение схем.
ПРИМЕЧАНИЕ. Все схемы находятся в одном каталоге 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 по схеме со вложенными включениями.