based on the known xml2json conversion rules :
1 - An XML element without text node
<a></a>
--> {"a":""}
2 - An empty XML element1
<a/>
--> {"a":null}
I expect to have different conversion from the Worklight xml parser.
Instead it seems that both scenarios are converted to empty string, never using the null value (or the empty square brackets at least).
Is this a work-as-designed approach, a limitation or a configurable behaviour?
I ignored the power of xsl transformation about testing xml. – Wakkko Jun 11 '14 at 09:35