org.ksoap2.serialization.SoapPrimitive cannot be cast to org.ksoap2.serialization.SoapObject
you have on your code:
SoapObject soapObject = (SoapObject) envelope.getResponse();
you must correct it by using bodyIn not getResponse().
your code must be like this:
SoapObject soapObject = (SoapObject) envelope.bodyIn ;
Aucun commentaire:
Enregistrer un commentaire