1
Answer

How to get data from the above webservice method an android

[WebMethod]
public string Grade()
{
DataTable dt = new DataTable();
dt = ConnectionClass.Selectcommand("select ProductName,PurchasePrice from Product");
resultC res = new resultC { result = dt };
string json = JsonConvert.SerializeObject(res);
return json;
}
 
How to get data from the above webservice method an android using Soap Method. please, help me 
Answers (1)
0
Gokhul Varman

Gokhul Varman

NA 10.7k 9.4k 7y
Please refer the link for more detailed expanation:https://trinitytuts.com/load-data-from-soap-web-service-in-android-application/