分享
 
 
 

.net 下用&#106avascript调用webservice

王朝c#·作者佚名  2006-11-24
窄屏简体版  字體: |||超大  

.net 下用javascript调用webservice的话,要用到webservice behavior。下面以一个例子讲解之,比较简单

1 、首先,要创建一个webservice,比如

<%@ WebService Language="C#" class=MyMath %>

using System;

using System.Web.Services;

public class MyMath {

[WebMethod]

public int add(int a, int b)

{

return a + b;

}

[WebMethod]

public int subtract(int a, int b)

{

return a - b;

}

}

然后发布,先得到其wsdl。

2、首先,我们要下载webbehavior.htc这个文件(可以到http://msdn.microsoft.com/downloads/samples/internet/behaviors/library/webservice/default.asp.)

去下载,然后放到你的web当前目录下然后在要调用webserice的页面中,修改如下

<body>

<div id="addservice" style="behavior:url(webservice.htc)"></div>

</body>

这里我们将div id命名为有意义的名称,并且指定style为 webservice行为。接着,我们要书写javascript来调用webserice了:

首先,我们在javascript中,调用其wsdladdservice.useService("http://localhost/services/math.asmx?WSDL","MyMath");使用id.useService(WSDLL路径,简单的命名方式);

我们之前设定的id是addservice,而为了给客户端调用方便,我们这里起了名称,叫MyMath。而为了保证能正确调用webserice,必须在body里的onload事件里,马上加载处理webservice调用的javascript,如下

<script language="JavaScript">

function init()

{

addservice.useService("http://localhost/services/math.asmx?WSDL","MyMath"); }

</script>

<body onload="init()">

<div id="service" style="behavior:url(webservice.htc)">

</div>

</body>

在上面,我们通过webservice行为,首先得到了返回webservice的wsdl,接下来我们要进行调用了,调用的格式如下: iCallID = id.FriendlyName.callService([CallbackHandler,] "MethodName", Param1, Param2, ...);

这里id是我们在div里设置的id,而FridndbyName是我们刚才为方面而起的命,这里就是MyMath了,而CallbackHandler是使用回调函数的过程名,如果无设置的话,则默认是使用onresult所调用的方法来进行处理,下文会讲到,而param1,,param2等则是说传入的参数了,如:

<SCRIPT language="JavaScript">

// All these variables must be global,

// because they are used in both init() and onresult().

var iCallID = 0;

var intA = 5;

var intB = 6;

function init()

{

// Establish the friendly name "MyMath" for the WebServiceURL

service.useService("/services/math.asmx?WSDL","MyMath");

// The following method doesn't specify a callback handler, so onWSresult() is used

iCallID = service.MyMath.callService("add", intA, intB);

}

function onWSresult()

{

// if there is an error, and the call came from the call() in init()

if((event.result.error)&&(iCallID==event.result.id))

{

// Pull the error information from the event.result.errorDetail properties

var xfaultcode = event.result.errorDetail.code;

var xfaultstring = event.result.errorDetail.string;

var xfaultsoap = event.result.errorDetail.raw;

// Add code to handle specific error codes here

}

// if there was no error, and the call came from the call() in init()

else if((!event.result.error) && (iCallID == event.result.id))

{

// Show the arithmetic!

alert(intA + ' + ' + intB + ' = ' + event.result.value);

}

else

{

alert("Something else fired the event!");

}

}

</SCRIPT>

<body onload="init()">

<div id="service" style="behavior:url(webservice.htc)" onresult="onWSresult()">

</div>

</body>

注意,用onresult方式返回的话,要在div部分的onresult中指定处理的方法,这里是用onWsresult()方法,其中根据返回的信息来判断是否出错,出错的话则显示。

如果用回调的话,则如下处理

<SCRIPT language="JavaScript">

// All these variables must be global,

// because they are used in both init() and onResult().

var iCallID = 0;

var intA = 5;

var intB = 6;

function init()

{

// Establish the friendly name "MyMath" for the WebServiceURL

service.useService("/services/math.asmx?WSDL","MyMath");

// The following uses a callback handler named "mathResults"

iCallID = service.MyMath.callService(mathResults, "add", intA, intB);

}

function mathResults(result)

{

// if there is an error, and the call came from the call() in init()

if(result.error)

{

// Pull the error information from the event.result.errorDetail properties

var xfaultcode = result.errorDetail.code;

var xfaultstring = result.errorDetail.string;

var xfaultsoap = result.errorDetail.raw;

// Add code to handle specific error codes here

}

// if there was no error

else

{

// Show the arithmetic

alert(intA + ' + ' + intB + " = " + result.value);

}

}

</SCRIPT>

<body onload="init()">

<div id="service" style="behavior:url(webservice.htc)">

</div>

</body>

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有