Hi people!
I'm trying to do this: I have an XML file that I want to validate according to an XSD file. So far so god... What I have to do is present the all node where is the validation error.
For example I have this XML file :
<people>
<name>Jonh</name>
<tel>91991919199191919</tel>
</people>
When I validate this file, this will get an error in the tel node. And I want to present the name to the final user of my applicattion and what is wrong in the XML for that .
I'm triyng to do this in C#.NET.
Thanks for the help...