Converting Xml to JSON on iOS

Dear Forum members,

my next challenge after soap web services is the converting my xml document to JSON.

My data providers SOAP WebServices responds only “xml”. It was not possible for me to process the xml document (soap response).

Now, I want to convert the xml document to JSON, because I think JSON is easier to handle on iOS with Xojo.

Can any one help to me, how I can convert xml to JSON on iOS with Xojo?

Beste regards,
zgr Aytekin

You’d have to do it manually.

Keep in mind that because JSON only supports Booleans, Strings, Numbers, NULLs and other JSON objects, you may not be able to represent everything you can do in XML. For instance, XML can represent different text encodings, whereas JSON is just UTF8.