aldm 0 Junior Poster in Training

Hi,

I'm new in android and I have to call wcf service from android app.
Everything works fine, but I don't know how can I manipulate with result set of WCF method.

This is my code snippet:

SoapObject request=new SoapObject(NAMESPACE, METHOD_NAME);
        	
        	SoapSerializationEnvelope envelope=new SoapSerializationEnvelope(SoapEnvelope.VER11);
        	envelope.dotNet=true;
        	envelope.setOutputSoapObject(request);
        	HttpTransportSE httpTransport=new HttpTransportSE(URL);
        	httpTransport.call(SOAP_ACTION, envelope);
        	SoapObject result=(SoapObject) envelope.getResponse();

Now, how can I manipulate with result when result is collection of C# classes which is mapped with soap, for example
list of Channe class with members ChannelPK and ChannelName?

If you can give me detailed answer it would be best.

Thanks in advance,

Amer

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.