diff -r 7a31f7298d8f -r 0c91f0baec58 crashanalysercmd/UI/Test tools/XmlValidator/Validator.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/crashanalysercmd/UI/Test tools/XmlValidator/Validator.cs Wed Apr 21 09:51:02 2010 +0300 @@ -0,0 +1,73 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Xml; +using System.Xml.Schema; + + +namespace XmlValidator +{ + class Validator + { + + static void Main(string[] args) + { + string dtdFile = string.Empty; + string xmlFile = string.Empty; + + if (args.Length == 2) + { + dtdFile = args[0]; + xmlFile = args[1]; + } + else + { + Console.WriteLine("Usage: XmlValidator.exe dtdfile.dtd xmlfile.xml"); + return; + } + try + { + XmlReaderSettings settings = new XmlReaderSettings(); + settings.ValidationType = ValidationType.DTD; + settings.ValidationEventHandler += XmlValidationEventHandler; + settings.ProhibitDtd = false; + XmlReader xmlReader = XmlReader.Create(xmlFile, settings); + + while (xmlReader.Read()) + { + // Do nothing + } + xmlReader.Close(); + } + catch (XmlException /* xmle */) + { + Console.Write("Not valid"); + return; + } + catch (System.IO.FileNotFoundException ex) + { + Console.WriteLine("File not found!"); + Console.WriteLine(ex.Message); + return; + } + + if (isValid) + { + Console.Write("Valid"); + } + else + { + Console.Write("Not valid"); + } + + } + + public static void XmlValidationEventHandler(object sender, ValidationEventArgs args) + { + isValid = false; +// Console.WriteLine("Validation event\n" + args.Message); + } + private static bool isValid = true; + } +}