I'm using KSoap within my Android application. My application using Web Service for communicate with the server. I have found a code sample of a KSoap wev service client. In the sample, the client uses the following code for communication with the server -
Request = new SoapObject(NAMESPACE, METHOD_NAME);
How do I pass arguments to the server?
How do I invoke the return value form the server?