The JSONToXML accessor serializes a JSON resource to
XML.
Warning: this accessor makes no warranty that the XML output will be well-formed.
For more details see the JSON guide
.
Example
JSONToXML will convert this JSON...
{"root":
{
"a": "1",
"b": "2"
}
}
into XML...
<root>
<a>1</a>
<b>2</b>
</root>