我有一個需求來構建一些可以很容易地調用到3dr派對API的服務。爲asp.net創建/使用web服務,HTML
電話可以通過簡單的 1)HTML頁面 2)ASPX頁面 3)移動設備來完成
我需要在什麼是出去的最佳方式幫助。
我應該單獨創建一個單獨的Web服務項目並創建幾個方法[WebMethod]
?
也可以靜態的方法?
/// <summary>
/// Summary description for signup_service
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
// [System.Web.Script.Services.ScriptService]
public class signup_service : System.Web.Services.WebService
{
[WebMethod]
public string CheckZone()
{
return "Hello World";
}
}
除非您被困在.NET 2.0中,否則您不應該將ASMX Web服務用於新的開發。應該使用WCF來代替。 –