Reputation: 303
I have to develop a mobile application, and i want to know if there is a web service framework which make developing easier and offers scalability, security and faster in parsing messages.
Upvotes: 1
Views: 995
Reputation: 2614
In terms of performance and network transport, Web Service is probably the least efficient way to go due to the size of SOAP and the complex XML parsing. If you are open to use AMF, in my experience it is the most efficient implementation. There are numerous server-side supports including Java, .NET, php, ruby, etc.
You may check the performance comparisons of different technologies via this blog, and iOS implementation of AMF can be found here.
In brief, here are my takes on numerous client-server communications:
Upvotes: 2