In the previous post about working with WSDL on Android, I described mechanism, how to make a query.
Now I found a very good possibility how to interpret the obtained results.
This will be just an addition to the previous post.
Our responce xml will be in the following view:
Name1 Active Name2 InActive
androidHttpTransport.call(SOAP_ACTION, envelope); SoapObject result=(SoapObject)envelope.bodyIn; Object resultObject =result.getProperty("result"); KvmSerializable ks = (KvmSerializable)resultObject; for (int i=0;i< ks.getPropertyCount();i++) { Object subResultOject = ks.getProperty(i); KvmSerializable subKs = (KvmSerializable)subResultOject; String name = subKs.getProperty(0); String status = subKs.getProperty(1); }