I want to develop an application on the Android platform to connect to salesforce. From what I found, salesforce provides a service API that you can use to connect to Salesforce servers by creating a web service from the client side.
The Salesforce developer site has examples of creating such a web service using Apache Axis as a SOAP client and using the WSDL file downloaded from the Salesforce website. I want to know if this can be done from the Android platform?
Is there a version of Apache Axis for Android? I did some search queries and found that Android does not have a built-in SOAP client, and Ksoap is usually used on Android. But I also read that KSOAP does not support WSDL.
I saw the above question asked earlier, but quite a while ago. Since the Android platform has appeared since I want to know what the current situation is and what options do it.
Also, since I'm new to Android and developing on Android, if anyone can direct me to the code snippet that creates the web service from android to connect to salesforce, I would be extremely grateful.
Thanks at Advance.
Edit: is there any other way to develop Salesforce client on Android without the above approach? I'm running out of ideas :(
source
share