Is there smth that can parse generated xml back to json with initial structure?
e.g. {name:'1212',attr:{title:2}} in xml will be <name title=2>1212</name>
Most xml parsers wil convert it to {name:'1212',title:'2'}, but that's not the initial structure.
thnx in advance! :)
Is there smth that can parse generated xml back to json with initial structure?
e.g.
{name:'1212',attr:{title:2}}in xml will be<name title=2>1212</name>Most xml parsers wil convert it to
{name:'1212',title:'2'}, but that's not the initial structure.thnx in advance! :)