I am trying to compare 2 XML files(file1.xml and file2.xml) with same
structure, but i need to ignore one particular node in both the files
as its values in both the files are different......
How can I do that......
The structure of the 2 xml files, file1.xml and file2.xml is as
follows:
<ExtResp>
...............
<Resp>
...............
<Lst>
...............
<Problem>
<id>...............</id>
<text>...........</text>
</Problem>
</Lst>
</Resp>
</ExtResp>
Only the <id> and <text> have different values, so I need to ignore
these tags(i.e. contained within <Problem>). How can i do this?