I am having a lot of trouble finding good information on how to call a standard SOAP/WSDL web service with Android. All I've been able to find are either very convoluted documents and references to "kSoap2" and then some bit about parsing it all manually with SAX. OK, that's fine, but it's 2008 so I figured there should be some good library for calling standard web services.

The web service is just basically one created in NetBeans. I would like to have IDE support for generating the plumbing classes. I just need the easiest/most-elegant way to contact a WSDL based web service from an Android based phone.

link|improve this question
feedback

19 Answers

up vote 86 down vote accepted

Android does not provide any sort of SOAP library. You can either write your own, or use something like kSOAP 2. As you note, others have been able to compile and use kSOAP2 in their own projects, but I haven't had to.

Google has shown, to date, little interest in adding a SOAP library to Android. My suspicion for this is that they'd rather support the current trends in Web Services toward REST-based services, and using JSON as a data encapsulation format. Or, using XMPP for messaging. But that is just conjecture.

XML-based web services are a slightly non-trivial task on Android at this time. Not knowing NetBeans, I can't speak to the tools available there, but I agree that a better library should be available. It is possible that the XmlPullParser will save you from using SAX, but I don't know much about that.

link|improve this answer
4  
Yeah, I think I will have to build a REST proxy. It seems pretty strange that Google has no interest in providing SOAP support. I tried the kSoap method, it's really not even a serious alternative. It is, at best, an ugly had that requires much scouring of newsgroups. – BobbyShaftoe Nov 22 '08 at 2:27
12  
The reason is probably that SOAP is very verbose and doesn't serve the constraints of mobile computing well. – Neil D Nov 26 '09 at 21:46
39  
This answer would be improved if someone could suggest the best alternative to calling web services with an Android App. Once people find this question and read it, that's what most of them will be looking for. – MGOwen Dec 22 '09 at 3:55
2  
SOAP processing is also memory and processor intensive compared to a more concise format like JSON. – Jeremy Edwards Mar 2 '10 at 6:15
@MGOwen The best alternative I can see is a proxy. Implement a REST-ful interface that proxies the SOAP envelopes through WSDL2Java. – Brian Reindel Jul 15 '11 at 17:57
show 1 more comment
feedback

org.apache.http.impl.client.DefaultHttpClient comes in the Android SDK by default. That'll get you connected to the WSDL.

HttpClient httpClient = new DefaultHttpClient();
HttpContext localContext = new BasicHttpContext();
HttpGet httpGet = new HttpGet("http://www.example.com/" + URL);
HttpResponse response = httpClient.execute(httpGet, localContext);
link|improve this answer
2  
Yeah, this would be the route where I would have to manually parse everything, I wouldn't get an object oriented approach. – BobbyShaftoe Jan 8 '09 at 23:59
52  
You mean you wouldn't get a free lunch. Manual parsing doesn't have anything to do with OO. I could parse everything on paper with my most advanced tool being an HB1 pencil and it would still be OO. – Neil D Jan 18 '09 at 21:01
1  
I believe by OO the author meant Java-XML binding. What would be your next step in this approach to parse the response? And if it has hundreds of elements, organized in a tree structure? – rustyx Jul 7 '11 at 14:26
3  
BTW, I would expect at least an HTTP POST not a GET if you want to have any luck with SOAP. Also, where's the Accept and SOAPAction headers? If you really want to go commando it will take much more than these 4 lines to consume a SOAP service. – rustyx Jul 7 '11 at 14:31
1  
If I had my druthers I wouldn't use SOAP for a web serivce to start with. I'd go RESTful with XML or better yet JSON. You are writing a client on a mobile device. Do you really want to use the device itself to parse WSDL, automatically create the supporting classes and then the proxy itself before even making its first web service call? How often are you going to do this? What's the application exactly? O.o – Neil D Jul 7 '11 at 19:11
show 2 more comments
feedback

I hope the video Android WebService01 helps.

link|improve this answer
3  
It does! Thanks! – teedyay Mar 29 '10 at 9:02
Greate Thanks for that video!!! – Arkaha Dec 16 '10 at 20:23
1  
To those who are just looking for a name of the library: this one is also about kSoap – rustyx Jul 7 '11 at 14:21
2  
Video was recently deleted. Anyone have a copy or know of a mirror? – Jim McKeeth Oct 27 '11 at 6:42
3  
feedback

It's true that due to it's overhead SOAP is not the best choice for data exchange with mobile devices. However, you might find yourself in situation in which you do not control the format of server output.

So, if you have to stick with SOAP, there is a kSOAP2 library patched for Android here:
http://code.google.com/p/ksoap2-android/

link|improve this answer
feedback

SOAP is an ill-suited technology for use on Android (or mobile devices in general) because of the processing/parsing overhead that's required. A REST services is a lighter weight solution and that's what I would suggest. Android comes with a SAX parser, and it's fairly trivial to use. If you are absolutely required to handle/parse SOAP on a mobile device then I feel sorry for you, the best advice I can offer is just not to use SOAP.

link|improve this answer
It's a sad conclusion, but full of truth :( +1 – jcxavier Dec 29 '11 at 11:04
feedback

To call a web service from a mobile device (especially on an Android phone), I have used a very simple way to do it. I have not used any web service client API in attempt to call the web service. My approach is as follows to make a call.

  1. Create a simple HTTP connection by using the Java standard API HttpURLConnection.
  2. Form a SOAP request. (You can make help of SOAPUI to make a SOAP request.)
  3. Set doOutPut flag as true.
  4. Set HTTP header values like content-length, Content type, and User-agent. Do not forget to set Content-length value as it is a mandatory.
  5. Write entire the SOAP request to the output stream.
  6. Call the method to make a connection and receive the response (In my case I used getResonseCode).
  7. If your received response code as
    1. It means you are succeeded to call web service.
  8. Now take an input stream on the same HTTP connection and receive the string object. This string object is a SOAP response.
  9. If the response code is other than 200 then take a ErrorInput stream on same HTTPobject and receive the error if any.
  10. Parse the received response using SAXParser (in my case) or DOMParaser or any other parsing mechanism.

I have implemented this procedure for the Android phone, and it is successfully running. I am able to parse the response even if it is more than 700 KB.

link|improve this answer
2  
Can you comment a piece of code please? I'm trying it but I can't get it. Thanks. – FrioneL Sep 26 '11 at 15:54
Hi Priyanjan, can you give sample of code please.... – Jayesh Nov 22 '11 at 11:06
feedback

I had my tryst with KSOAP; I chose a rather simpler approach.

Given a WSDL file, create SOAP Request templates for each Request(for e.g.: using SOAP UI) and then substitute the values to be passed in code. POST this data to the service end point using DefaultHttpClient instance and get the response stream. Parse the Response Stream using an XML Pull parser.

link|improve this answer
feedback

You can have a look at WSClient++

link|improve this answer
2  
Finally a first useful answer after repeating either kSoap or SAX – rustyx Jul 7 '11 at 14:20
I tried the demo version. Didn't work for me for a simple service. Is isn't worth spending so many $$$$$. – Tushar Jul 26 '11 at 19:10
feedback

I've created a new SOAP client for the Android platform. It is using a JAX-WS generated interface, but it is only a proof-of-concept so far.

If you are interested, please try the example and/or watch the source at AndroidSOAP.

link|improve this answer
1  
I had the pleasure to attend your presentation at JUM XVII. Budapest about this Android stuff. Keep up the good work! – pcjuzer Nov 19 '10 at 9:58
feedback

If you can, go for JSON. Android comes with the complete org.json package

link|improve this answer
feedback

I hope Calling a web service from Android helps.

link|improve this answer
feedback

Call ksoap2 methods. It works very fine.

Set up the details, like

    private static String mNAMESPACE=null;
private static String mURL=null;
public static Context context=null;

SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11); envelope.dotNet = true; envelope.setOutputSoapObject(Request);

    envelope.addMapping(mNAMESPACE, "UserCredentials",new UserCredendtials().getClass());
    AndroidHttpTransport androidHttpTransport = new AndroidHttpTransport(mURL);

and then to get the result do

androidHttpTransport.call(SOAP_ACTION, envelope);
result = (SoapPrimitive)envelope.getResponse();
link|improve this answer
feedback

I am sure you could make a little SOAP client with Axis. Axis installation instructions.

link|improve this answer
feedback

About a year ago I was reading this thread trying to figure out how to do SOAP calls on Android - the suggestions to build my own using HttpClient resulted in me building my own SOAP library for Android:

IceSoap

Basically it allows you to build up envelopes to send via a simple Java API, then automatically parses them into objects that you define via XPath... for example:

<Dictionary>
    <Id></Id>
    <Name></Name>
</Dictionary>

Becomes:

@XMLObject("//Dictionary")
public class Dictionary {
    @XMLField("Id")
    private String id;

    @XMLField("Name")
    private String name;
}

I was using it for my own project but I figured it might help some other people so I've spent some time separating it out and documenting it. I'd really love it if some of your poor souls who stumble on this thread while googling "SOAP Android" could give it a go and get some benefit.

link|improve this answer
Great library, just started using it – Gerbrand Mar 21 at 16:04
feedback

I think Call SOAP Web Service from Android application will help you a lot.

link|improve this answer
feedback

If you can use JSON, there is a whitepaper, a video and the sample.code in Developing Application Services with PHP Servers and Android Phone Clients.

link|improve this answer
feedback

If you are having problem regarding calling Web Service in android then You can Use below code to call the web service and get response .Make sure that your Web Service return the response in Data Table Format..This code help you if you using data from SQL Server database .If you you using MYSQL you need to change one thing just replace word NewDataSet from sentence obj2=(SoapObject) obj1.getProperty("NewDataSet"); by DocumentElement

private static final String NAMESPACE = "http://tempuri.org/"; //for wsdl it may be package name i.e http://package_name
private static final String URL ="http://localhost/sample/services/MyService?wsdl";
//you can use   IP address instead of localhost
private static final String METHOD_NAME = "Function_Name";
private static final String SOAP_ACTION = "urn:"+METHOD_NAME;

SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME); 
request.addProperty("parm_name",prm_value);// Parameter for Method
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11); 
envelope.dotNet = true;// **If your Webservice in .net otherwise remove it**
envelope.setOutputSoapObject(request);
HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);
try {
androidHttpTransport.call(SOAP_ACTION, envelope);//call the eb service Method
} catch (Exception e) {
e.printStackTrace();}//Next task is to get Response and format that response
SoapObject obj,obj1,obj2,obj3;
obj= (SoapObject) envelope.getResponse();
obj1=(SoapObject) obj.getProperty("diffgram");
obj2=(SoapObject) obj1.getProperty("NewDataSet");
for(int i=0;i<obj2.getPropertyCount();i++)//the method getPropertyCount() return the number of rows
{
obj3=(SoapObject) obj2.getProperty(i);  
obj3.getProperty(0).toString();//value of column 1
obj3.getProperty(1).toString();//value of column 2
//like that you will get value from each column
}

If you have any problem regarding this you can write me..

link|improve this answer
feedback

Few months ago I was working with jax-ws web service in j2ee application, There we were using CXF wsdl2java to generate WS client stub from the WSDL file and with those client stubs we consumed the web services. Few weeks ago, when I was trying to consume the web service in the same way in android platform I couldn't, because the android jar has not all the "jax-ws" supporting classes in it. That time I didn't find any such tool ( if I wasn't failed to google efficiently) to meet my requirement --

  • Get the client stub from the WSDL.
  • And call the Service with some argument (java business request object).
  • Get the Response Business Object.

So, I developed my own Android SOAP Client Generation Tool. Where you have to follow these steps :

  • From WSDL Get WS Client Stub, Put it in your project.
  • Say for Some Service "ComplexOperationService", Instantiate the Service, Get the Endpoint port and call the service method, and get the response from the Web service :

eg:

  ComplexOperationService service = new ComplexOperationService( );
  ComplexOperation port= service.getComplexOperationPort();    
  SomeComplexRequest request = --Get some complex request----;  
  SomeComplexResp resp = port.operate( request  );
  • You don't need to care about the service class/req/response classes or any other classes and the method as well, as you know its all are generated from WSDL.
  • And of course you needn't be aware of the soap action/envelop/namespace etc. Just call the method as we, developers do all the time.
link|improve this answer
feedback

This example will help a lot,

    public class Login extends Activity {
/** Called when the activity is first created. */

private static final String SOAP_ACTION = "http://tempuri.org/LoginUser";
private static final String METHOD_NAME = "LoginUser";
private static final String NAMESPACE = "http://tempuri.org/";
private static final String URL = "http://";
private static final String TAG = "HELLO";

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    Button signin = (Button) findViewById(R.id.regsubmitbtn);

    signin.setOnClickListener(new OnClickListener() {
        public void onClick(View v) {
            new StartLoginAsyncTask(yourclass.this).execute();
        }
    });
}

private class LoginTask extends AsyncTask<Void, Void, Boolean> {
    private final ProgressDialog dialog = new ProgressDialog(YourClass.this);

    protected void onPreExecute() {
        this.dialog.setMessage("Logging in...");
        this.dialog.show();
    }

    protected Boolean doInBackground(final Void unused) {
        return Main.this.login(); //don't interact with the ui!
    }

    protected void onPostExecute(final Boolean result) {
        if (this.dialog.isShowing()) {
            this.dialog.dismiss();
        }
        if (result.booleanValue()) {
            //also show register success dialog
        }
}

}

link|improve this answer
feedback

protected by Jeff Atwood Jun 7 '10 at 21:38

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.