建立Web服務
<%@ WebService Language=
using System;
using System
public class AddNumbers : WebService
{
[WebMethod]
public int Add(int a
int sum;
sum = a + b;
return sum;
}
}
結果將以XML格式返回。tw.winGwit.COm
在客戶機上部署這個服務
1.在命令行輸入:
//IP地址/WebService/MathService.asmx /n:NameSp /out:FileName.cs
這個操作將建立一個稱為FileName.cs的文件
說明:WSDL 指的是WebServices Description Language ,這個程序在Program Files\Microsoft.NET\FrameworkSDK\Bin 目錄中。
NameSp是我們設置的名字空間的名字,將在後面部署這個服務的客戶端的實現代碼中使用到。
2.編譯
CSC /t:library /r:system.web.dll /r:system.xml.dll FileName.cs
上述命令將生成一個dll文件,名字就是上面的asmx文件中的公共類的名字,在我們的例子中,就是:AddNumbers.dll
3.將生成的dll文件放到部署機的wwwroot\bin目錄中。
在部署機的asp/aspx 中調用這個Web服務
<%@ import Namespace = "NameSp" %>
<script language = "c#" runat = "server">
public void Page_Load(object o, EventArgs e){
int x = 10;
int y = 5;
int sum;
//Instantiating the public class of the webservice
AddNumbers AN = new AddNumbers();
sum = AN.Add(x,y);
string str = sum.ToString();
response.writeline(str);
}
</script>
From:http://tw.wingwit.com/Article/program/net/201311/11541.html