I am trying to retrieve List of String from my SoapObject.I am using KSoap2 to call my webservice which returns List of Strings.Here is my code
SoapPrimitive response = (SoapPrimitive)envelope.getResponse();
Can anybody help me to get all the list elements from my SoapPrimitive object.
like List abc =response.getList() or something??