[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(); … Read more