I want to translate xml documents with a certain schema into another schema. I know both the old and new schemas…
I am planning to use python’s xml.dom library , and translate line by line.
Any ideas on how to go about it ? Any tools or libraries in other languages that might make this easier/more efficient.
Thanks!
You could craft an XSLT to do this work for you. XSLT is specifically designed for the translation of XML data into some other text-based format, including XML. For more information on XSLT, I recommend W3 Schools.