You need to know, which structure your webservice response delivers.
for example:
<XML ..>
<soap-env:Envelope xmlns:soap-env="
http://schemas.xmlsoap.org/soap/envelope/">
<soap-env:Header/>
<soap-env:Body>
<n0:Response ...>
<test1>
<var1>value1</var1>
<var2>value2</var2>
<var3>value3</var3>
</test1>
<test2>
<var4>value4</var4>
<var5>value5</var4>
</test2>
</n0:Response>
</soap-env:Body>
</soap-env:Envelope>
SoapObject object1 = (SoapObject)response.getProperty("test1");
==> This Object contains the test1-part of the xml tree. For the var1...3 you must use
String value = object1.getPropertyAsString("var1");
If there no value for the varible you get the String "anyType{}".
For debug you can use response.toString() -> complete object with all key/value-pairs.
See the javadocs for other methods ;)
I hope this answers your question ;)