Check This:

SOAP_ACTION = NAMESPACE(web service url) + method(soap method name in
server side)
Example:
SOAP_ACTION = NAMESPACE + method;
SoapObject request = new SoapObject(NAMESPACE, mathod);
request.addProperty("key", value);

SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(
                SoapEnvelope.VER11);
envelope.dotNet = true;
envelope.setOutputSoapObject(request);
HttpTransportSE httpTransport = new HttpTransportSE(URL);
httpTransport.call(SOAP_ACTION, envelope);
SoapObject sobj = (SoapObject) envelope.getResponse();
*parse the soap object here.*

On Mon, Sep 3, 2012 at 4:39 PM, rauf qureshi <[email protected]> wrote:

> hello everyone,
>
> can anybody  explain me SOAP service
> I have found many example but i have not cleared  following parameters
>
> NAME_SPACE
> METHOD
> SOAP_ACTION
> URL
>
> 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 [email protected]
> 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




-- 
Thanks & Regards,
Manjeet <http://www.vihangamyoga.org/>

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
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