国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 語言 > JavaScript > 正文

Javascript調(diào)用Webservice的多種方法

2024-05-06 15:44:50
字體:
來源:轉載
供稿:網(wǎng)友
復制代碼 代碼如下:

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調(diào)用webservice+xmlhttp的實現(xiàn)部分。

<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"?>'; datadata = 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/">'; datadata = data + '<soap:Body>'; datadata = data + '<SayHelloTo xmlns="http://tempuri.org/">'; datadata = data + '<Name>'+value+'</Name>'; datadata = data + '</SayHelloTo>'; datadata = data + '</soap:Body>'; datadata = 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方法需要發(fā)送的那堆東東可以在webservice的測試頁面中找到,自己拼湊加上對應的參數(shù)就可以。
通過style.behavior來實現(xiàn)的方法(比較簡單)
function getfemale()
{
//第一個參數(shù)是webservice的url,后面是名稱
female.useService("news.asmx?WSDL","news");
//設置一個回調(diào)函數(shù),service返回結果的時候回調(diào);第一個參數(shù)是回調(diào)函數(shù)的名稱,后面的是webservice的參數(shù)
intCallID=female.news.callService(female_result,"getphoto","female"); //這里有兩個參數(shù).....
}
function female_result(result)//回調(diào)函數(shù)
{
if(result.error)
{
female.innerHTML=result.errorDetail.string;
}
else
{
female.innerHTML=result.value; //將webservice返回的結果寫如div中
}
}
頁面顯示部分:

?

?

?


ok,這給我們在靜態(tài)頁調(diào)用動態(tài)的內(nèi)容提供了一種途徑;
這里如果給getfemale()函數(shù)加上定時調(diào)用的話,就是一種無刷新更新頁面的機制了。
缺點是webservice會有一定的延遲,即使是本地的webservice也會比靜態(tài)頁面慢很多,初次打開頁面會感覺很不協(xié)調(diào)。
第二種方法使用了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調(diào)用webservice的文章:

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表

圖片精選

主站蜘蛛池模板: 汤原县| 宜宾市| 荆州市| 江华| 乐安县| 普洱| 葵青区| 丘北县| 炎陵县| 沙河市| 新绛县| 龙游县| 南宁市| 天等县| 得荣县| 南川市| 来凤县| 德清县| 四川省| 高淳县| 商洛市| 永定县| 松江区| 阿勒泰市| 印江| 西乌珠穆沁旗| 昔阳县| 玉山县| 西昌市| 洛宁县| 内黄县| 福鼎市| 冀州市| 长治县| 泽州县| 威海市| 商城县| 隆尧县| 邵阳县| 南城县| 宁德市|