Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone know of a good solution to convert from XML to JSON and then back to XML?

I found two tools for jquery, xml2json & json2xml.

Each of these works very well - however, the conversions they use aren't 100% consistent.

Has anyone encountered this situation before?

share|improve this question
2  
Explain the inconsistencies, please – Josh Stodola Nov 20 '09 at 22:08
1  
Specifically, had to do with converting JSON arrays with just 1 element to XML. When you converted it back to JSON, instead of a 1-element array, it created the object literal. I worked around it by checking the type with $.isArray(), and wrapping it in an array if !$.isArray(). – Jason Denizac Nov 20 '09 at 23:33
xml2json - fyneworks.com/jquery/xml-to-json - breaks throws 500 as of 15/02/2013 14:25 AEST – ysrb Feb 15 at 3:25

2 Answers

up vote 21 down vote accepted

I think this is the best one: Converting between XML and JSON

Be sure to read the accompanying article on the Xml.com O'Reilly site (linked to at the bottom). The writer goes into details of the problems with these conversions, which I think you will find enlightening. The fact that O'Reilly is hosting the article should indicate that Stefan's solution has merit.

share|improve this answer
thanks for the reply! In my case, the JSON is the canonical representation, and XML is just used for XSLT.. the use of which is not my idea! :) – Jason Denizac Nov 20 '09 at 23:29
This is only in the browser. Doesn't apply for node.js or non-browser environments. Any other ideas? – Homer6 May 2 at 17:47

Another one http://code.google.com/p/x2js/

This library provides XML to JSON (JavaScript Objects) and vice versa javascript conversion functions. The library is very small and doesn't require any other additional libraries.

API functions

  • new X2JS() - to create your own instance to access all library functionality
  • X2JS.xml2json - Convert XML specified as DOM Object to JSON
  • X2JS.json2xml - Convert JSON to XML DOM Object
  • X2JS.xml_str2json - Convert XML specified as string to JSON
  • X2JS.json2xml_str - Convert JSON to XML string
  • X2JS.escapeMode(true|false) - Set XML characters escaping mode
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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