Is it possible for a parser (DOM or SAX) to continue to read the whole XML doc even after it has encountered the first error. Let say I have the last name tag wrong and also the work phone. Would I have to reconfigure the parser to continue? I would bascially want to map out all the errors at once, not just one at a time.
<servicelevel>ServiceLevel</servicelevel>
<name>
<first>first</first>
<lasttt></last>
</name>
<phone>
<work>9999999999</work>
<hm>9999999999</home>
</phone>
-Thanks
-Ryan
<servicelevel>ServiceLevel</servicelevel>
<name>
<first>first</first>
<lasttt></last>
</name>
<phone>
<work>9999999999</work>
<hm>9999999999</home>
</phone>
-Thanks
-Ryan