2
Answers

upload xml file in mvc and validate it against the schema

olaitan temi

olaitan temi

9y
584
1
i was ask to write a program application that can upload xml and validate it to confirm is xml also validate against the schema. read and display in a table. i will be glad if i can get help because am new in coding
Answers (2)
0
Vulpes

Vulpes

NA 98.3k 1.5m 12y
Unless I'm missing something here, I'd have thought that you should be able to create an XmlDocument and then use its LoadXml method to load the XML string you've received from the serial device without needing to save it to a file first.

You can then create an XPathNavigator by calling the XmlDocument's CreateNavigator method.

So, in code, that would be be something like this:

XmlDocument doc = new XmlDocument();
doc.LoadXml (xmlString);
XPathNavigator nav = doc.CreateNavigator();

Alternatively, you could forget about XPathNavigator and use LINQ to XML which can certainly parse in-memory XML strings.