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!
| |||
|
feedback
|
|
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 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 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. | |||
|
feedback
|