选择显示字体大小

.net 下用javascript调用webservice

.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/inte.net/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!");


 


关键字 本文所属关键字

相关 与本文相关文章

分类 所有文章关键字导航

源码编程相关

Java   Asp   PHP   .Net   XML   C/C++   CGI   VB   Jsp   J2ee   J2se   J2me   EJB   Servlet   Tomcat   Resin   Struts   Weblogic   Eclipse   ANT   GUI   JMS   Web servise   IDEA   Webphere   Hibernate   Spring   Jboss   Applet   Swing   Socket   Javamail   Perl   Ajax   P2P   安全   模式   框架   测试   开源   游戏

SQL数据库相关

My-SQL   Ms-SQL   Access   DB2   Oracle   Sybase   SQLserver   索引   存储过程   加密   数据库   分页   视图  

手机无线相关

3G   Wap   CDMA   GRPS   GSM   IVR   彩信   短信   无线   增值业务

网页设计制作相关

HTML   CSS   网页配色   网页特效   Javascript   VBscript   Dreamweaver   Frontpage   JS   Web   网站设计

网站建设推广相关

建站经验   网站优化   网站排名   推广   Alexa

操作系统/服务器相关

Windows XP   Windows 2000   Windows 2003   Windows Me   Windows 9.x   Linux   UNIX   注册表   操作系统   服务器   应用服务器

图形图像多媒体相关

Photoshop   Fireworks   Flash   Coreldraw   Illustrator   Freehand   Photoimpact   多媒体   图形图像

标准 网站致力的规范

Valid CSS!

无不良内容,无不良广告,无恶意代码

Valid XHTML 1.0 Transitional

creativecommons