Hi
Are there any pre-made classes out there that can take 2 XML files that adhere to the same DTD/Schema rules and compare them against each other.
For example
<student id=1234>
<name>Joe Bloggs</name>
<address>Anytown</address>
</student>
I'd want to he able to see
Students in File1 (the primary file) that are also in File2.
Students in File1 who are also in File2, but whose name or address is different.
any ideas?