vote up 5 vote down star
3

Hello, I think i have a rather unique problem to solve. Well, i cant find enough information using Google. So here it goes,

I work on a JEE SOA application which stores XML documents as XML using Oracle XML DB. Whenever the XML changes, i increment the version and throw the previous version into a different table.

The requirement now is, I should store the differences between 2 versions as XML, instead of the whole XML document.

1) Is there any Java library which can do XML comparison? (XMLUnit, ... ?) 2) Is there a standard XML Schema for capturing XML differences? 3) What transformation technology can i use to apply the "differences" to an XML to go back and forth between versions? (XSLT, Groovy,.... ?)

I appreciate your time.

flag

5 Answers

vote up 3 vote down

Side note: there is now a standard format for XML-aware "patches", in RFC 5261. There is at least one free software program, xmlpatch, which implements it. It is written in C, you may call it from Java.

link|flag
vote up 1 vote down

In my last job, we had a similar problem: We had to detect changes, insertions, and deletions of specific items between two XML files. The files weren't arbitrary XML; they had to adhere to our XSD.

Our solution was to implement a kind of merge sort: Parse the files (using a SAX parser, not a DOM parser, to permit arbitrarily large files), and store the parsed data in separate HashMaps. Then, we compared the contents of the two maps using a merge-sort type of algorithm.

Naturally, the larger the files got, the more memory pressure we experienced, so I ultimately wrote a FileHashMap class that pushed the HashMap's value space to random access files. While theoretically slower, this solution allowed our comparisons to work with very large files, without thrashing or OutOfMemoryError conditions. (A version of that FileHashMap class is available in this library: http://www.clapper.org/software/java/util/)

I have no idea whether what I just described is even remotely close to what you need, but I thought I'd share it, just in case.

Good luck.

link|flag
vote up -4 vote down

does this help?

link|flag
Yes it does.... IT POINTS BACK TO THIS SITE – Brad Bruce Feb 11 at 18:04
@Brad 1) it didn't used to; 2) so what? it points to a number of other useful tools too. – ykaganovich Feb 11 at 22:30
-1 for unhelpful attitude. – obvio171 Nov 9 at 1:10
Give a man a fish and you feed him for a day; teach a man to fish and you feed him for a lifetime. – ykaganovich Nov 9 at 18:22
vote up 0 vote down

I think you should not fixate on xml comparison, but look at text comparison as a whole.

Just store a text diff of the 2 xmls, you can use the patch format, which you can apply later to reconstruct the original file.

link|flag
1  
a text diff is very different from an XML diff – unknown (yahoo) Jan 10 '09 at 8:23
Very bad idea, IMHO. A XML-aware diff works on the infoset, not on the text representation. With a text diff, even recoding the XML file from UTF-8 to UTf-16 would make a change, something I find hard to swallow. – bortzmeyer Jan 12 '09 at 9:21
vote up 3 vote down

There are any number of open-source XML diff tools written in Java that you can crib from. One list of such tools is here.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.