We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Any idea why this XML:
<xml> <vip LocalAddress="10.140.67.150" LocalPort="10002"> <entries> <remoteaddress>10.57.0.168</remoteaddress> <remoteport>18676</remoteport> </entries> </vip> <vip LocalAddress="10.140.67.150" LocalPort="10183"> <entries> <remoteaddress>10.57.0.168</remoteaddress> <remoteport>6900</remoteport> </entries> <entries> <remoteaddress>10.57.0.176</remoteaddress> <remoteport>5293</remoteport> </entries> </vip> </xml>
translates to this Json:
{ "vip": [ { "@LocalAddress": "10.140.67.150", "@LocalPort": "10002", "entries": { "remoteaddress": { "#text": "10.57.0.168" }, "remoteport": { "#text": "18676" } } }, { "@LocalAddress": "10.140.67.150", "@LocalPort": "10183", "entries": [ { "remoteaddress": { "#text": "10.57.0.168" }, "remoteport": { "#text": "6900" } }, { "remoteaddress": { "#text": "10.57.0.176" }, "remoteport": { "#text": "5293" } } ] } ] }
that is pretty ugly (why @, #text ???) ?
Thanks in advance
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Any idea why this XML:
translates to this Json:
that is pretty ugly (why @, #text ???)
?
Thanks in advance
The text was updated successfully, but these errors were encountered: