Hello all
I've an XML object converted into the following JSON object
"{"?xml":{"@version":"1.0","@encoding":"utf-8"},"Response":{"Users":null,"Messages":{"Tell":{"Notify":{"@From":"abc","@Message":"hi system, its abc<br/>"}},"Group":null},"PersistedMessages":{"Tell":null,"Group":null}}}"
How can i get the values inside the xml nodes from this JSON object. For example, how can i get that the version is 1.0 from the @version
attribute?
Thank you.