XML Processing on iPhone: What is the best option?
Posted
by gonso
on Stack Overflow
See other posts from Stack Overflow
or by gonso
Published on 2010-04-05T17:08:36Z
Indexed on
2010/04/05
17:13 UTC
Read the original article
Hit count: 197
Hello
Im building a new version of an iPhone application and Im wondering if I should review how my app communicates with the server. My iPhone client sends and receives XML over HTTP requests.
To send the information I use ASIHTTPRequest framework. I "manually" build the XML request by appending strings.
To parse the response Im using a NSXMLParser.
My question is if I have better options to A) Create an XML string from a memory object. B) Create a memory object from the XML string.
Is there anything like JAXB to marshal XML into object?
Thanks Gonso
© Stack Overflow or respective owner