I have my app working with my REST webservices.
However, the XML overhead is un-believably horrible on EDGE connections, so-so on 3G, and okay on Wi-FI (or when on the simulator).
I have turned my REST service to output a deliminited TXT file instead of a well formed XML. This has resulted in a 92% drop in the file size.
Is there a code sample out there, on what is the best way to read, load, and parse out the deliminted lines. So I can load them into my custom class objects that I am using in the current app.
However, the XML overhead is un-believably horrible on EDGE connections, so-so on 3G, and okay on Wi-FI (or when on the simulator).
I have turned my REST service to output a deliminited TXT file instead of a well formed XML. This has resulted in a 92% drop in the file size.
Is there a code sample out there, on what is the best way to read, load, and parse out the deliminted lines. So I can load them into my custom class objects that I am using in the current app.