I want to use the web service in Android Application. I have already built web service using SOAP.
Asked
Active
Viewed 4,124 times
-1
-
1This is a duplicate of http://stackoverflow.com/questions/297586/how-to-call-web-service-with-android – Steve Pomeroy Feb 10 '11 at 07:07
2 Answers
1
You can also try if KSOAP2 library meets your needs, since it is more suited to mobile devices than libraries aimed for PCs

dstefanox
- 2,222
- 3
- 19
- 21
-
-
1Here are some [link](http://www.helloandroid.com/tutorials/using-ksoap2-android-and-parsing-output-data), [link](http://groups.google.com/group/android-developers/browse_thread/thread/9b246db7d612a6b5/44bb777f03c5c8ac?pli=1) – dstefanox Feb 10 '11 at 07:10
-
1Prepare for war if you'd like to use kSoap for any scenarios more complex than adding two numbers together with a soap-service tho. – Zsombor Erdődy-Nagy Feb 10 '11 at 09:24
-
0
You can use existing Java libraries in Android. Check out Apache's Axis: http://axis.apache.org/axis/ as an example of a SOAP Java library.
Also, this is a duplicate of this SA question: How to call a SOAP web service on Android

Community
- 1
- 1

Steve Pomeroy
- 10,071
- 6
- 34
- 37
-
I have used Apache Axis2 for building web service. But the problem is how can i call that web service in android. – Kartik Domadiya Feb 10 '11 at 06:56
-
I have used KSOAP2 for calling web service in android....it worked smoothly.. – Kartik Domadiya Feb 11 '11 at 06:10