As i work with xmls on Mainframe, I would require a tool to compare which helps me in comparing and identifying missing/new tags found in an xmls when compared with base/source. Do we have any ready to deploy TSO tools to compare xmls? I wait for quite sometime and start writing a rexx tool for the same based on the responses. Thanks for your suggestions and info in advance!

link|improve this question

70% accept rate
feedback

1 Answer

There's a big difference between comparing the text of an XML file and comparing the XML of an XML file. You can compare the text, and if both versions are generated by the same code, there's probably no difference between the two types of comparison. But there can be lots of textual differences between two XML files that are equivalent when compared with the knowledge that they're XML.

For example, the following are two different text files that are identical XML:

<A   B='C' D='E' />

<A D="E"     B="C"   ></A>

A good XML comparison tool (e.g. Microsoft's XML Diff Tool) will recognize that these are the same. A bad one (e.g. the Unix diff command) will think they're different, for any of several reasons (different quotes, minimized markup, attribute ordering, and whitespace).

I'd recommend you find an existing Open Source tool (e.g., X-Diff) and get it working on TSO rather than try to write your own.

link|improve this answer
X-Diff will run unaided on a z/OS JVM. – Joe Zitzelberger Jan 30 at 3:48
feedback

Your Answer

 
or
required, but never shown

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