0
           SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);

        request.addProperty("birthday", dateString);
        SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(
                SoapEnvelope.VER11);
        envelope.dotNet=true;
        envelope.setOutputSoapObject(request);
        HttpTransportSE androidhttpTranport = new HttpTransportSE(URL);

i send a param is type String as request.addProperty("birthday", dateString); How do i send a Arraylist<Object> ?

2
  • What is SoapObject? Is this one of your classes or does it come from a library you are using. Commented Jan 11, 2013 at 9:48
  • See.. mirnauman.wordpress.com/2012/10/18/… Commented Jan 13, 2013 at 9:26

1 Answer 1

2

It depends your web service, if you have an array of objects or primitives you can build a loop iterating through and adding into SoapObject. Check for this one

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.