最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
web service 让我们来入门(一)
时间:2022-06-30 10:01:20 编辑:袖梨 来源:一聚教程网
web service 让我们来入门
也许web serivce的出现一定形式对Dcom和CORBA来说,对其rpc
一定应用带入平台无关性,确实在远程调用函数为已所用通过soap
传递,对其不同的平台,移植,都是大大地进步!!
-------
让我们来看一下web service的简单应用
在服务端定义一个函数 pggpjj
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;
[WebServiceBinding(ConformanceClaims=WsiClaims.BP10,EmitConformanceClaims = true)]
public class WebService : System.Web.Services.WebService {
[WebMethod]
public int pggpjj(int a, int b)
{
int sum;
sum = a + b;
return sum;
}
}
--------------
然后可以其asmx文件
其实现在已建立了下web服务
----------------
客户端调用
WSDL http://*IP*地址/*WebService/webservice.asmx /n:pggpjjnap /out:c:pggpjj.cs
wsdl.exe在Program FilesMicrosoft.NETFrameworkSDKBin
CSC /t:library /r:system.web.dll /r:system.xml.dll c:pggpjj.cs
csc.exe在WINDOWSMicrosoft.NETFramework版本 会在csc.exe目录下生成pggpjj.dll
再调用
void Page_Load(object sender, EventArgs e)
{
WebService pggpjj1 = new WebService();
int p;
p=pggpjj1.pggpjj(6, 8);
string pp =p.ToString();
Response.Write(pp);
}
也许web serivce的出现一定形式对Dcom和CORBA来说,对其rpc
一定应用带入平台无关性,确实在远程调用函数为已所用通过soap
传递,对其不同的平台,移植,都是大大地进步!!
-------
让我们来看一下web service的简单应用
在服务端定义一个函数 pggpjj
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;
[WebServiceBinding(ConformanceClaims=WsiClaims.BP10,EmitConformanceClaims = true)]
public class WebService : System.Web.Services.WebService {
[WebMethod]
public int pggpjj(int a, int b)
{
int sum;
sum = a + b;
return sum;
}
}
--------------
然后可以其asmx文件
其实现在已建立了下web服务
----------------
客户端调用
WSDL http://*IP*地址/*WebService/webservice.asmx /n:pggpjjnap /out:c:pggpjj.cs
wsdl.exe在Program FilesMicrosoft.NETFrameworkSDKBin
CSC /t:library /r:system.web.dll /r:system.xml.dll c:pggpjj.cs
csc.exe在WINDOWSMicrosoft.NETFramework版本 会在csc.exe目录下生成pggpjj.dll
再调用
void Page_Load(object sender, EventArgs e)
{
WebService pggpjj1 = new WebService();
int p;
p=pggpjj1.pggpjj(6, 8);
string pp =p.ToString();
Response.Write(pp);
}
相关文章
- 王者荣耀世界藏云有匪通关指南 04-24
- 《Yoshi and the Mysterious Book》前瞻 任天堂出品的治愈系小品 04-24
- 最真实一战战场FPS来了 发售时间、定价官宣 04-24
- 汗汗漫画免费版下载安装包-汗汗漫画最新版本下载入口 04-24
- 斗破苍穹漫画下拉式合集最新更新-章节阅读方式与内容获取说明 04-24
- 抖音网页版-官方入口在哪 04-24