Hi,
My service returns the result in following structure:
<Rows>
<Row>
<EMPID></EMPID> <NAME></NAME> <AGE></AGE> </PHONE> <CITY></CITY>
</Row>
</Rows>
I need to change the structure in following format:
<Rows>
<Row>
<EMPID>
<NAME></NAME> <AGE></AGE> </PHONE> <CITY></CITY>
</EMPID>
</Row>
</Rows>
I have to put all other attributes inside <EMPID> to make it a collapsible section meaning <EMPID> will be parent attribute for others instead of their sibling attribute. Can someone please tell me what's the best builder to do this transformation without LJO.
-Thanks