I have several config files in my .net applications which I would like to merge application settings elements etc.

I was about to begin doing it manually as I usually do, however thought there must be an XML diff GUI tool available somewhere.

The tool would be able to go to the element level to compare and display the differences etc.

However Google gave no substantive free tool results and no hints for anything of value.

Is such a tool available? That is very useful? For free?

Thanks in advance. :)

Edit:

Here is a bit of clarification of the functionality that would turn my error-prone, tedious manual job into a 1-minute simpler task (and potential to automate):

In KDiff3, you can do a diff/merge of entire directories. There is a hierarchical diff which is very accurate, user-friendly and clear. I was interested in finding a similar solution, however instead of directory hierarchy, an XML element hierarchy.

If there is no such open source software, I am considering creating one on CodePlex to provide this functionality.

link|improve this question

feedback

closed as not constructive by Bill the Lizard May 12 at 14:55

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

11 Answers

up vote 2 down vote accepted

KDiff is not XML specific, but it is free. It does a nice job of comparing and merging text files.

link|improve this answer
I agree I am using KDiff3 at the moment, however a tool specifically for XML that could go down to the element level would be terrific. – Russell Dec 9 '09 at 1:32
If a child of a node has changed, then surely the node itself has materially changed. I don't think I quite follow what a tool specific to XML would do in such a case that would be different from diff (pardon the pun). – Jarret Hardie Dec 9 '09 at 1:35
I was thinking from this perspective: the way KDiff does a hierarchical diff of directories, a hierarchical diff of elements could also work. So if an element has changed, then I agree, the parent elements should also be flagged as having changed. – Russell Dec 9 '09 at 1:38
Ah, I get it now, many thanks. You're looking for a diff tool that can report a change in a line of text that actually hasn't itself changed, but for which a "nested" line of text has changed. Gotcha. That would be very useful. Apologies for not cottoning-on earlier. – Jarret Hardie Dec 9 '09 at 1:48
No probs, just thought it would already exist :) – Russell Dec 9 '09 at 2:01
show 3 more comments
feedback

Have a look at at File comparison tools, from which I am using WinMerge. It has an ability to compare XML documents (you may with to enable DisplayXMLFiles prefilter).

enter image description here

link|improve this answer
2  
+1 Winmerge version 2.12.4.0; Menu "Plugin" -> "List" -> check "Enable Plugins"; Menu "Plugin" -> check "Automatic unpacking". Tested with XML file with file name with extension .xml and it seems to work. – uvts_cvs Sep 14 '11 at 9:43
@vts_cvs: I also made a small investigation, although I was looking for very specific features. – dma_k Sep 14 '11 at 21:31
It doesn't deal well with attributes being in different orders, so it's usefulness might be limited, depending on your situation. – Michael Kohne Mar 8 at 20:50
feedback

I realise this thread is a little old, and I'm sure you've found a solution by now, but for future readers, I wrote and released a Windows application that specifically solves the problem of comparing and merging XML files.

Project: Merge can perform two and three way comparisons and merges of any XML file (where two of the files are considered to be independent revisions of a common base file). You can instruct it to identify elements within the input files by attribute values, or the content of child elements, among other things.

It is fully controllable via the command line and can also generate text reports containing the differences between the files.

Project: Merge merging three XML files

link|improve this answer
Hi @James Thanks for the info. Obviously it would be nice if it was free, but it does provide some very cool functionality - and your example above is a classic as to why this tool is soooo helpful! Thanks for your post. :) – Russell Feb 27 '11 at 22:59
I've tried Project::Merge and unfortunately it was not able to cope with my task. I have HTML text in paras (<p>) which is added formatting (like <i>, <em>). So Project::Merge shows that complete para was changed, it does not do in-depth word analysis. – dma_k Aug 23 '11 at 9:28
Yes, I'm sorry to say that XHTML (it will never do legacy HTML) support is pretty limited in that respect, as is text differencing within XML blocks in general. Most work so far have been focused on configuration-style XML files where free form character data is limited in its extent and usage. Hopefully I'll improve Project: Merge in this area in a future release. – James Aug 25 '11 at 17:05
feedback

There are a few Java-based XML diff and merge tools listed here:

Open Source XML Diff written in Java

Added links:

link|improve this answer
I am having trouble finding any links to the software in the link you mentioned. – Russell Dec 9 '09 at 1:42
Yeah, me too! Might need to Google around a bit... – Chris Fulstow Dec 9 '09 at 1:58
feedback

I use TortoiseMerge, which is included in TortoiseSVN program

And we have talked about File Diff tools in this thread, not dedicated to XML though

http://stackoverflow.com/questions/1830962/file-differencing-software-on-windows

link|improve this answer
Thanks S.Mark, as I mentioned to epotter, I already use KDiff3 for general file diffs, however I would really prefer an XML specific diff utility if it is available (if not, I will start up an open-source one :) ) – Russell Dec 9 '09 at 1:44
>> (if not, I will start up an open-source one :) Wow, wonderful! will looks forward to it, please drop link somewhere here If its starts. – YOU Dec 9 '09 at 1:51
Ok, Will do :)- – Russell Dec 9 '09 at 1:53
feedback

While this is not a GUI tool, my quick tests indicated that diffxml has some promise. The author appears to have thought about the complexities of representing diffs for nested elements in a standardized way (his DUL - Delta Update Language specification).

Installing and running his tools, I can say that the raw text output is quite clear and concise. It doesn't offer the same degree of immediate apprehension as a GUI tool, but given that the output is standardized as DUL, perhaps you would be able to take that and build a tool to generate a visual representation. I'd certainly love to see one.

The author's "links" section does reference a few other XML differencing tools, but as you mentioned in your post, they're all proprietary.

link|improve this answer
feedback

Altova's DiffDog has free 30-day trial and should do what you're looking for:

http://www.altova.com/diffdog/diff-merge-tool.html

link|improve this answer
did you read the question propertly? it says free! – Piotr Owsiak May 31 '11 at 16:48
feedback

This is a diff engine for java developers, but it comes with a demo interface - you might be able to use it: https://community.emc.com/docs/DOC-5042

link|improve this answer
feedback

I recommend you to use CodeCompare tool. It supports native highlighting of XML-data and it can be a good solution for your task.

link|improve this answer
feedback

Pretty Diff tool was created with XML in mind. Just ensure you click the option for "markup".

http://prettydiff.com/

link|improve this answer
But that is online tool, right? How can I apply changes from left to right or merge? – dma_k Aug 23 '11 at 10:22
feedback

A7Soft provide XML comparison tools freeware and shareware:

http://www.a7soft.com

link|improve this answer
feedback

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