deep
deep

Reputation: 109

iPhone web App Server connection

I am developing an iPhone app which need connection to server to fetch huge data at regular interval.So need to know which way is better socket connection or using libXML

Thanks

Upvotes: 0

Views: 193

Answers (2)

Marcelo Cantos
Marcelo Cantos

Reputation: 186078

libXML isn't a data transfer library, and sockets don't handle XML, so if you are trying to download and process large XML documents, I'd say you need both, not one or the other.

Also, I'd be extremely wary of transferring "huge" data sets directly to an iPhone. At the very least, I'd use compression and give the user some warnings before transferring data over a 3G link.

Upvotes: 2

david
david

Reputation: 66

Whats you mean by Huge data.. whats would be the size.\n Its better First you test with max data which is chance to come from server.

Upvotes: -1

Related Questions