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