My code is:
public class MainActivity extends Activity implements OnClickListener {
Button b;
private static String NAMESPACE = \"http://tempuri.org/\";
pri
Basicly it's something like this:
SoapObject GetListResponse = (SoapObject)result.getProperty(0);
SoapObject DocumentElement = (SoapObject)GetListResponse.getProperty(3);
SoapObject Table1 = (SoapObject)DocumentElement.getProperty(0);
This contains SoapObjects within SoapObjects, so the best thing to do is to write a recursive method to scan through all properties and find the information you need. Something like this:
private static void ScanSoapObject(SoapObject result)
{
for(int i=0;i