• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

XML comparison

 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi

I have 2 XMLs which I need to compare and identify their differences in a J2EE application.

I have used Diff & DetailedDiff classes from xmlunit. like
Diff myDiff = new Diff(beforeXML, afterXML);
DetailedDiff dd = new DetailedDiff(myDiff);
List differenceList = dd.getAllDifferences();

2 problems
1. Non-Complex elements with more than 1 occurrances are not getting compared properly
e.g beforeXML contains
<rootElement>
<comlexElement>
<title>aa</title>
<title>bb</title>
<comlexElement>
<rootElement>



and afterXML contains
<rootElement>
<comlexElement>
<title>cc</title>
<title>dd</title>
<title>ee</title>
<comlexElement>
<rootElement>

then this comparion is not happening correctly

2. In addition to these does anybody know way to exclude some elements from comparison. I can specify list of elements those shouldnt be compared?


any suggestions are welcome
Gajanan
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic