Validating XML

A

A.M

Hi,

I can serialise an XML file into an object using this code:

string strXmlPath = Server.MapPath ("/Thumb/Config.xml");
XmlSerializer serializer = new XmlSerializer(typeof(Config));
TextReader reader = new StreamReader(strXmlPath);
Config config = (Config)serializer.Deserialize(reader);
reader.Close();

It works fine, but it doesn't validate the XML file. How can I modify above
code to validate XML data file through an XSD file?

Thanks,
Alan
 
J

John Saunders

A.M said:
Hi,

I can serialise an XML file into an object using this code:

string strXmlPath = Server.MapPath ("/Thumb/Config.xml");
XmlSerializer serializer = new XmlSerializer(typeof(Config));
TextReader reader = new StreamReader(strXmlPath);
Config config = (Config)serializer.Deserialize(reader);
reader.Close();

It works fine, but it doesn't validate the XML file. How can I modify above
code to validate XML data file through an XSD file?

There is an overload of Deserialize which accepts an XmlReader instead of a
TextReader. You could pass an XmlValidatingReader to that parameter.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top