I've seen there are a lot of posts about XML comparison, but none of the one's I've looked at solve my problem.
We have some XML-formatted text documents (product descritptions, with headings and paragraphs) that are being updated (i.e. versioned), and I've been tasked with making change digests. That is, we want to take two sequent files and generate a third; the heading structure (outline) is to be preserved, but only paragraphs with changes are to be kept -- additions as well as deletions should be marked up.
So I've been trying to find a way to walk both DOM trees and detecting additions and deletions, but I'm running into problems detecting them reliably. It's obviously because I should be doing a diff -- but I can't use a plain diff because I want to do individual diffs inside each element, and because I can't use a traditional diff result but need to have a fully formatted xml digest.
Any hints before I try to tackle the "Longest common subsequence problem", which is going to be a huge task?