JSON String returned from SOAP web service containing no records for table
问题 I have a SOAP web service(.asmx) implemented using the .NET framework that returns me a JSON String in this form: {"checkrecord":[{"rollno":"abc2","percentage":40,"attended":12,"missed":34}],"Table1":[]} Now in my Android app I am using ksoap to call the web service in the following way: public String getjsondata(String b) { String be=""; SoapObject request = new SoapObject(namespace, method_NAME); request.addProperty("rollno",b); SoapSerializationEnvelope envelope = new