The JSONFromXML accessor converts an XML document to
JSON
. The accessor returns an IAspectJSON resource.
For more details see the JSON guide.
Example
JSONFromXML will convert this XML document...
<root>
<a>1</a>
<b>2</b>
</root>
into the following JSON object...
{"root":
{
"a": "1",
"b": "2"
}
}