一、创建WEBSERVICE 1. 打开 Visual Studio .NET。 2. 创建一个新的 Active Server Pages (ASP) .NET Web 服务项目。 将该 Web 服务命名为 OydjService,并在必要时将其位置指定为一个适
当的运行 ASP.NET 的 Web 服务器。 3. 将 Solution 文件的名称改为 OydjService 以保持一致。 4. 将用 Service1.asmx 创建的默认 Web 服务的名称更改为 OydjService.asmx。 5. 单击设计环境中的单击此处切换到代码视图以切换到代码视图。 6. 定义用来封装您的服务功能的方法。 此服务提供的每一个方法前面都必须标有一个 WebMethod 属性。如果没有此属性,则服务将不公开此
方法。
备注: 并不是每一个方法都需要有 WebMethod 属性。 隐藏由公用 Web 服务方法调用的某些实现细节是很有用的,在本地应用程序也使用
WebService 类的情况下,也需要隐藏某些实现细节。 本地应用程序可以使用任何公用类,但只有具有 WebMethod 属性的方法可以作为 Web
服务远程访问。
将下面的代码添加到您在前面创建的 OydjServices 类:
程序代码:
<WebMethod()> Public Function Add(a As Integer, b As Integer) As Integer Return(a + b) End Function
<WebMethod()> Public Function Subtract(A As System.Single, B As System.Single) As System.Single Return A - B End Function
<WebMethod()> Public Function Multiply(A As System.Single, B As System.Single) As System.Single Return A * B End Function
<WebMethod()> Public Function Divide(A As System.Single, B As System.Single) As System.Single If B = 0 Return -1 End If Return Convert.ToSingle(A / B) End Function
生成 Web 服务: 从生成菜单中,选择生成。 可通过转至 OydjService.asmx Web 服务页来测试此 Web 服务。 如果您的页面放置在本地计算机上,那么 URL 将是