vote up 6 vote down star
1

I need to "merge" two XML documents, overwriting the overlapsed attributes and elements. For instance if I have document1:

<mapping>
    <key value="assigned">
        <a/>
    </key>
    <whatever attribute="x">
        <k/>
        <j/>
    </whatever>
</mapping>

and document2:

<mapping>
    <key value="identity">
        <a/>
        <b/>
    </key>
</mapping>

I want to merge the two like this:

<mapping>
    <key value="identity">
        <a/>
        <b/>
    </key>
    <whatever attribute="x">
        <k/>
        <j/>
    </whatever>
</mapping>

I prefer Java or XSLT-based solutions, ant will do fine, but if there's an easy way to do that in Rake, Ruby or Python please don't be shy :-)

EDIT: actually I find I'd rather use an automated tool/script, even writing it by myself, because manually merging some 30 XML files is a bit unwieldy... :-(

flag

Can you be a little more specific about the rules you want to apply? Will there always only be one element with the same name? Do you go deeper into the tree to compare child elements when both documents have the same element (with identical attributes)? – Christian Berg Sep 17 '08 at 16:56
By the way, your example is not well-formed ("whatever" is not closed). – Christian Berg Sep 17 '08 at 16:56

2 Answers

vote up 2 vote down check

If you like XSLT, there's a nice merge script I've used before at: Oliver's XSLT page

link|flag
vote up 0 vote down

Unsure as to whether you want to do this programatically or not.

Edit: Ah, I posted that before the Edit. Don't I look like an idiot now! ;)

If you just want to merge two files together, IBM have an XML Diff and Merge Tool, and there's also Altova's DiffDog.

link|flag
Never mind, I've been a bit clumsy and posted the question before the text was complete... who does look like an idiot, now? ;-) As for your answer: thanks a lot, I'm investigating into the tools you suggested and I will let you know if they saved my... bacon :-) – Manrico Corazzi Sep 17 '08 at 7:11

Your Answer

Get an OpenID
or

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