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
Post a Comment