web services - Webservice response message can't be handled in Ksoap2 of android -


i have webservice method returns value in list response application.in key value pairs <"item","http://www.codegeeks.com/">. when response @ application end,it shows me problem related casting of soapobject list. simple code response :-

soapobject request = new soapobject(namespace, operation_name);                // request.addproperty("menu", "menu");                            // request.addproperty("pass",password);                            soapserializationenvelope envelope = new soapserializationenvelope(soapenvelope.ver11);              envelope.dotnet = true;              envelope.setoutputsoapobject(request);               httptransportse ht = new httptransportse(url);              ht.call(soap_action, envelope);               soapobject result = (soapobject)envelope.getresponse(); 

please me change soapobject value list.i in big trouble due it.help please.


Comments

Popular posts from this blog

PHPMotion implementation - URL based videos (Hosted on separate location) -

c# - Unity IoC Lifetime per HttpRequest for UserStore -

I am trying to solve the error message 'incompatible ranks 0 and 1 in assignment' in a fortran 95 program. -