Converting XML to JSON
Steps
- Create a project
utils-xml
. - Create a JavaScript service with the name
xml-json.js
. - Enter the following content:
var xml2json = require("utils/v4/xml");
var response = require("http/v4/response");
var input = "<a><b>text_b</b><c>text_c</c><d><e>text_e</e></d></a>";
var result = xml2json.toJson(input);
var json = JSON.parse(result);
console.log("JSON: " + JSON.stringify(json));
response.println(JSON.stringify(json));
response.flush();
response.close();
For more information, see the API documentation.