Skip to content Skip to sidebar Skip to footer

Soap Response Not In Xml Format

I am developing an application which consume SOAP web service. When i am getting the response in text view or in log-cat it is in following format as : anyType{Results=anyType{Row=

Solution 1:

I solved the issue of getting response. What i done is :

I just add :

androidHttpTransport.debug = true;

before :

androidHttpTransport.call(SOAP_ACTION, envelope);

and after the call i added :

Stringxml= androidHttpTransport.responseDump;

And by this i am getting the browser response in a string.

Post a Comment for "Soap Response Not In Xml Format"