Hi,
I dont know the meaning of these variables:

private static final String SOAP_ACTION = "...";
    private static final String METHOD_NAME = "...";
    private static final String NAMESPACE = "...";
    private static final String URL = "...";

SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
SoapSerializationEnvelope envelope = new
SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.setOutputSoapObject(request);
HttpTransportSE androidHttpTransport = new HttpTransportSE
(URL);
androidHttpTransport.call(SOAP_ACTION, envelope);

So I am not sure how to set the above variables for my webservice. My
service url is

http://localhost:9000/helloWorld

MethodName is

sayHi

Please help here.

Thanks in advance.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to