My question is somewhat similar to Get boolean from SoapObject (kSOAP2),
so, the thing is my soap response is something like
anyType{ResCode=100; TransID=123456; Signature=abc123def456; OutputParams=anyType{params=anyType{useruid=a-e23; status=1; fullname=john smith; }; }; }
pretty much with the same format as the link above, but using the answers provided there I still keep getting
java.lang.RuntimeException: illegal property: useruid
and the code that i used was
//resp = resp.getProperty("OutputParams");
//resp = (SoapObject) resp.getProperty("params");
//str = resp.getPropertyAsString("useruid");
str = resp.getPropertyAsString("params");
all these didn't work... anybody has more ideas?