Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~57 People Reached
Favorite Forums
Favorite Tags
xml x 1
Member Avatar for devgud

Hi I need a general xslt to convert XML to JSONX My input is <Login> <Groups> <Group> <Name>john</Name> <Password/> </Group> <Group> <Name>john</Name> <Password/> </Group> </Groups> </Login> I need output as below <json:object xmlns:json="http://www.ibm.com/xmlns/prod/2009/jsonx"> <json:object name="Login"> <json:object name="Groups"> <json:array name="Group"> <json:object> <json:string name="Name">john</json:string> <json:null name="Password"/> </json:object> <json:object> <json:string name="Name">john</json:string> <json:null name="Password"/> …

0
57