0
[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;
}
如何從上面的Web服務方法的數據的機器人請幫我如何Android上使用SOAP方法 獲得來自Web服務方法的數據使用SOAP方法
請給我解決方案 –
您可以在ksoap上搜索教程。 –
你能告訴我,我的webservice是好還是不好。返回此服務的數據是 [{「ProductName」:「BD-1」,「PurchasePrice」:165.00}] 如何處理此數據android –