webservice簡單例子
阿新 • • 發佈:2017-08-03
web space new gets asp ret rms png tool
1、添加web服務。
/// <summary> /// demo 的摘要說明 /// </summary> [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [System.ComponentModel.ToolboxItem(false)] // 若要允許使用 ASP.NET AJAX 從腳本中調用此 Web 服務,請取消註釋以下行。 //[System.Web.Script.Services.ScriptService]public class demo : System.Web.Services.WebService { [WebMethod] public string HelloWorld() { return "Hello World"; } [WebMethod] public int GetSum(int a, int b) { return a + b; } }
2、添加服務引用:地址為上一步添加的web服務訪問地址,高級=》添加web引用=》添加引用。
3、調用
public ActionResult GetSum(int a, int b) { localhost.demo s = new localhost.demo(); var sum = s.GetSum(a, b); return Content(sum.ToString()); }
webservice簡單例子