开发者

What are the best practices to design webservices for mobile (particularly Android) apps?

开发者 https://www.devze.com 2023-01-20 11:25 出处:网络
What are the best practices to design webservices for mobile (particularly Android) apps? Personally I\'m focused on using JSON (and not XML) and I t开发者_Python百科ry to make it the less verbose I c

What are the best practices to design webservices for mobile (particularly Android) apps? Personally I'm focused on using JSON (and not XML) and I t开发者_Python百科ry to make it the less verbose I can. But I'm probably missing a lot of things.


The stuff I've read so far indicates that there is too much of a processing overhead when calling a traditional webservice using SOAP and parsing xml. The best advice was to make your webservice RESTful and use JSON. There's some good information on this earlier question: How to call a SOAP web service on Android


XML parsing on Android is supposed to be faster than the built-in JSON parser as the former is backed by native code. However, some people have used a different JSON parser (http://jackson.codehaus.org/) with success.


The GSON parser also works well with Android in my experience. Given that a shot if you're sending / received JSON payloads.

0

精彩评论

暂无评论...
验证码 换一张
取 消