RE: [android-developers] SOAP on Android

2012-02-21 Thread Tommy Hartz
I used KSOAP2 http://code.google.com/p/ksoap2-android/ it is pretty good. If you have the ability to go RESTful I would go that way. I converted all my services from SOAP to RESTful and it is noticeable more responsive. -Original Message- From: android-developers@googlegroups.com

Re: [android-developers] soap in android

2010-09-08 Thread Kevin Duffey
If you're able to use REST, I'd go that route, much easier to deal with. Not sure about kSoap and such. Worse case, set up your own server, make a REST call to it from device, and have it make the soap calls, then send the response back to your android device. Sort of like mashups on web sites.