views:

222

answers:

2

As I am writing a Webservice client to deal with the webservices for my application in android, I am bit confused about the approaches among KSOAP2 and Android default HTTPCLient, Which one would be more relevant to use in Android

Suggestions Welcome. Thank you.

+1  A: 

If it's a SOAP webservice you are trying to consume then I would definitely use a SOAP client library such as KSOAP2. If it's not a SOAP webservice, then I'd probably just use HTTPClient.

mbaird