There is no surprise for those who work with web-services a lot that they get updated from time to time. And you always need to track changes of these updates.
In my particular case I deal with web service defined by WSDL and I get classes generated based on this WSDL.
But before regeneration of classes from updated WSDL I would like to see what was changed in WSDL and determine amount of changes - to see what should I be prepared for.
Unfortunately, if I compare just .wsdl files of new and old version it doesn't always work very well for one reason - wsdl contents can be reordered (refactored internally). That's the reason to find more semantic tool.
I've tried Oxygen XML Diff tool but it doesn't also work well for me.
I am looking for a tool which will take two XMLs and bring me only semantic differences, e.g.:
- Element A added
- Added subelement b7 to element B
For this to work I guess the tool must load and deeply analyze the structure, Oxygen XML Diff was claim to do it well, but it just an improved version of text files comparison.
Could you recommend a working to for that, in particular to see updates in web-services based on WSDL.
UPDATE 1: New Idea is to compare generated sources rather than WSDLs.
Thank you.