I need to transfer a significant amount of structured data that goes something like this in XML -
<person>
<fname></fname>
<lname></lname>
<DOB></DOB>
.
.
</person>
Each person
record has 5 fields, and each time the app is opened, about 30-40 (possibly more) person
records will be loaded.
Will XML be a good implementation to do this? Should I be worried about Data rates over 3G / Processor speed / Code and memory size?
Should I be looking at JSON? If so, can I make an ASP.NET web service return JSON data?