If I am trying to retrieve first array using (String) response.getProperty(0);
but it was returning me a full string.
**Here is the code of webservice calling**
public static Object getResponse(String methodName, String actionName, LinkedHashMap<String, String> valueStrings)
{
SoapObject soapObject = new SoapObject(LetUsClickAPIConstants.COMMON_NAMESPACE, methodName);
Object response = null;
for (Map.Entry<String, String> mapKeys : valueStrings.entrySet())
{
soapObject.addProperty(mapKeys.getKey(), mapKeys.getValue());
}
final SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.dotNet = false;
envelope.setOutputSoapObject(soapObject);
final AndroidHttpTransport androidHttpTransport = new AndroidHttpTransport(LetUsClickAPIConstants.COMMON_URL);
try
{
androidHttpTransport.call(actionName, envelope);
response = envelope.getResponse();
Log.d("Response ", response.toString());
} catch (final IOException e)
{
Log.d("Exception", "" + e);
} catch (final XmlPullParserException e)
{
Log.d("Exception", "" + e);
}
return response;
}
I got an response in Vector type
[Client{UserId=93; nickName=ladies; }, Client{UserId=94; nickName=ABCD; }]
I have tried many ways but I am not success to retrieve in any way?