I've validated my XML file with a schema, and I know which lines (through the help of some Microsoft Visual Basic objects) are not conforming to the schema.
Is there a way to use the line number and attract the element-attribute value pairs that're giving me the errors?
For example,
99 ...
100 <person>
101 <surname>blah</surname>
102 <firstname>blahblah</firstname>
103 <age>x</age>
104 </person>
105 ...
Is there any facility that can help me to figure out it's the "age" attribute of "person" element with "blah" surname that's giving me the problem?
Thanks.
mink
Is there a way to use the line number and attract the element-attribute value pairs that're giving me the errors?
For example,
99 ...
100 <person>
101 <surname>blah</surname>
102 <firstname>blahblah</firstname>
103 <age>x</age>
104 </person>
105 ...
Is there any facility that can help me to figure out it's the "age" attribute of "person" element with "blah" surname that's giving me the problem?
Thanks.
mink