tags:

views:

185

answers:

2

I am working on iPhone Applications. Recently i have used SOAP api to integrate with iPhone application. my main aspect of this particular query is whether SOAP is best or REST is best considering performance issue as a iPhone application.

I have tried with SOAP, there will be frequent crashes happened to me. so is it better to use REST to overcome from such issues.

Currently my main concern is to achieve best performance in application and i am looking for such solution from you all.

+6  A: 

SOAP is bulky and heavy compared to REST services.

Prefer Rest as it is Simple and very efficient.

Rohit
A: 

If you want to transfer data from web to your app, prefer JSON. It is faster and better than xml.

Max Brice