C++ source of ExamXML XML diff tool  
Author Message
AndrewYB





PostPosted: Visual C++ General, C++ source of ExamXML XML diff tool Top

Hello,

I’m working on a project that includes comparing XML files and I need a source code on C++ to compare XML fragments.

I’m using ExamXML from http://www.hide-link.com/ to compare XML files but I need the C++ source code.

Can anybody help me.

Thanks.



Visual C++15  
 
 
cgraus





PostPosted: Visual C++ General, C++ source of ExamXML XML diff tool Top

You're plainly not going to get the source code of a commercial product.

I wrote code to diff XML documents years ago, I just iterated over both node sets, the trick is when you find a difference, you need to look ahead to work out where the documents become the same again.

Have you written any source code yet Are you using C++/CLI What are you using to contain the XML documents