[Solved] Please identify this output format [closed]


Looks like that is just the string description for the object, which is a result of you using result.toString();

This might be of some help for learning how to parse the result correctly.

For example, you can get the first property of the object like so:

SoapObject result = (SoapObject) envelope.getResponse();
String firstProperty = result.getProperty(0).toString();

Which assumes the first property is a string. You may need to parse the string if you expect a different type.

It seems it should also be possible to get the property by name like so:

result.getProperty("myProperty").toString();

0

solved Please identify this output format [closed]