Your Ad Here
首页 | 编程语言 | 网站建设 | 游戏天堂 | 冲浪宝典 | 网络安全 | 操作系统 | 软件时空 | 硬件指南 | 病毒相关 | IT 认证
软讯网络 > 网站建设 > ASP > Javascript调用Webservice的汇集
【标  题】:Javascript调用Webservice的汇集
【关键字】:Javascript,Webservice
【来  源】:http://blog.csdn.net/hyde82/archive/2006/12/04/1429155.aspx

Javascript调用Webservice的汇集

Your Ad Here

整理了一下:js调用WebService的几种方法:

通过XmlHttp+WebService(原始方法)

原文地址:http://netboy.cnblogs.com/archive/2006/02/18/333260.html

using System;
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;

[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class Service : System.Web.Services.WebService
{
public Service () {

//Uncomment the following line if using designed components
//InitializeComponent();
}

[WebMethod]
public string SayHelloTo(string Name) {
return "Hello "+Name;
}

}
还是俗了点。:)

2. js调用webservice+xmlhttp的实现部分。

<html>
<title>
Call webservice with javascript and xmlhttp.
</title>
<body>
<script language="javascript">

//Test function with get method.
function RequestByGet(data){

var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
//Webservice location.
var URL="http://localhost:1323/WebSite6/Service.asmx/SayHelloTo?Name=Zach";
xmlhttp.Open("GET",URL, false);
xmlhttp.SetRequestHeader ("Content-Type","text/xml; charset=utf-8");
xmlhttp.SetRequestHeader ("SOAPAction","http://tempuri.org/SayHelloTo");
xmlhttp.Send(data);
var result = xmlhttp.status;
//OK
if(result==200) {
document.write(xmlhttp.responseText);
}
xmlhttp = null;
}

//Test function with post method
function RequestByPost(value)
{
var data;
data = '<?xml version="1.0" encoding="utf-8"?>';
data = data + '<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">';
data = data + '<soap:Body>';
data = data + '<SayHelloTo xmlns="http://tempuri.org/">';
data = data + '<Name>'+value+'</Name>';
data = data + '</SayHelloTo>';
data = data + '</soap:Body>';
data = data + '</soap:Envelope>';

var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
var URL="http://localhost:1323/WebSite6/Service.asmx";
xmlhttp.Open("POST",URL, false);
xmlhttp.SetRequestHeader ("Content-Type","text/xml; charset=gb2312");
xmlhttp.SetRequestHeader ("SOAPAction","http://tempuri.org/SayHelloTo");
xmlhttp.Send(data);
document.write( xmlhttp.responseText);

}

</Script>

<input type="button" value="CallWebserviceByGet" onClick="RequestByGet(null)">
<input type="button" value="CallWebserviceByPost" onClick="RequestByPost('Zach')">

</body>
</html>
对于使用post方法需要发送的那堆东东可以在webservice的测试页面中找到,自己拼凑加上对应的参数就可以。

通过Style.BEHAVIOR来实现的方法(比较简单)

原文地址:http://www.zahui.com/html/4/37953.htm

<script language="javascript">
function getfemale()
{
//第一个参数是webservice的url,后面是名称
female.useService("news.asmx?WSDL","news");
//设置一个回调函数,service返回结果的时候回调;第一个参数是回调函数的名称,后面的是webservice的参数
intCallID=female.news.callService(female_result,"getphoto","female"); //这里有两个参数.....
}

function female_result(result)//回调函数
{
if(result.error)
{
female.innerHTML=result.errorDetail.string;
}
else
{
female.innerHTML=result.value; //将webservice返回的结果写如div中
}
}
</script>
页面显示部分: <div id="female" style="BEHAVIOR:url(WebService.htc)"></div>

ok,这给我们在静态页调用动态的内容提供了一种途径;
这里如果给getfemale()函数加上定时调用的话,就是一种无刷新更新页面的机制了。
缺点是webservice会有一定的延迟,即使是本地的webservice也会比静态页面慢很多,初次打开页面会感觉很不协调。

 

第二种方法使用了style.代码就简洁多了他使用了css.定义了div的行为.比起第一种方法,就易读多了:)

STYLE="behavior:url(webservice.htc)"

前提条件是:

If you are using Microsoft IE 5 or later, you can use the behavior/HTML-Component "WebService" to access a Web service. The "WebService" behavior communicates with Web services over HTTP using Simple Object Access Protocol (SOAP).

附注:另一个总结帖子在:http://goody9807.cnblogs.com/archive/2005/08/17/216725.html

 

Calling WebServices using Javascript

If you are using Microsoft IE 5 or later, you can use the behavior/HTML-Component "WebService" to access a Web service. The "WebService" behavior communicates with Web services over HTTP using Simple Object Access Protocol (SOAP).

To use the "WebService" behavior, you must attach it to an element using the STYLE attribute, as follows:

 

STYLE="behavior:url(webservice.htc)">

 附上IBM上面有关Ajax调用WebService的文章:

使用 AJAX 调用 SOAP Web 服务,第 1 部分: 构建 Web 服务客户机

方便国际化开发的Eclipse插件:【上一篇】
我的脚本语言观:【下一篇】
【相关文章】
  • JavaScript 访问 JSF 组件的方法
  • JavaScript 实现拖拽
  • javascript控制页面控件隐藏显示
  • javascript 事件处理 IE和标准dom 的差别
  • JavaScript就这么回事
  • Just another high performance string format function for JavaScript
  • javascript 之趣味 函数式编程
  • Get Weather by webservice, implemented in python
  • JavaScript写作技巧,函数A中调用函数B, 怎样在函数B中写代码中断函数A的运行?
  • Flickr让javascript和css更快
  • 【随机文章】
  • 在oracle中实现搜索分页查询
  • EhLib v3.6 FS For D4-9/CB4-6
  • WinSocket出错
  • 余治国你就这样走了吗?
  • 如何在两个SQLSERVER之间数据同步
  • 新的改进 Property Class
  • 怎么在项目开发过程控制开发人员的开发约束?
  • Perl——《PleacPerl》.chm
  • [推荐]Shell十三问——憨实基础
  • 综合布线概念详释
  • 【相关评论】
    没有相关评论
    【发表评论】
    姓名:
    邮件:
    随机码*
    评论*
          
    |  首 页  |  版权声明  |  联系我们   |  网站地图  |
    CopyRight © 2004-2007 bbb软讯网络 All Rigths Reserved.