ASP調(diào)用web services_ASP教程
推薦:asp控制xml數(shù)據(jù)庫的6條實(shí)用代碼NO.1--建立一個XML數(shù)據(jù)庫data.xm ?xml version=1.0? records record namecaca/name qq154222225/qq emailroot@3ney.com/email /record records NO.2--建立對象CreateObject 建立data.xml的對象先 set xmldoc=server.createobjcet(microsoft.xmldom) xmld
ASP調(diào)用web services
<%
Function CallWebServices(sUrl, sMethodName, soapMessage, XmlString)
CallWebServices = false
Set xmlhttp = CreateObject("MSXML2.XMLHTTP")
xmlhttp.Open "POST",sUrl, False
xmlhttp.SetRequestHeader "Content-Type","text/xml; charset=utf-8"
xmlhttp.SetRequestHeader "SOAPAction",sUrl & "/" & sMethodName
xmlhttp.send(soapMessage)
'response.Write("xmlhttp.Status : " & xmlhttp.Status & "<br>")
'response.Write("xmlhttp.statusText : " & xmlhttp.statusText & "<br>")
'response.Write("xmlhttp.responseText : " & xmlhttp.responseText & "<br>")
'response.Write("xmlhttp.responseXML.xml : " & xmlhttp.responseXML.xml & "<br>")
if xmlhttp.Status = 200 then
CallWebServices = true
XmlString = xmlhttp.responseXML.xml
end if
Set xmlhttp = Nothing
End Function
%>
這種方式需要構(gòu)造一個SOAP請求的字符串。
而在C#里面調(diào)用web services就簡單了許多。只要添加WEB引用,就可以像使用自己的類一樣使用了。
分享:ASP操作XML文件的主要方法和實(shí)現(xiàn)ASP通過XMLDom在服務(wù)器端操作XML文件的主要方法和實(shí)現(xiàn) 對于小數(shù)據(jù)量,xml文件在檢索更新上于ACCESS有很多優(yōu)勢。 我曾經(jīng)測試過不用數(shù)據(jù)庫,把網(wǎng)站的會員信息,商品數(shù)據(jù)信息,交易信息,網(wǎng)站定制信息全部存放在三個xml文件中,運(yùn)行結(jié)果十分正常,感覺上比數(shù)據(jù)
- asp FSO 讀寫文件本文件實(shí)現(xiàn)代碼
- asp中isNull、isEmpty和空字符串的區(qū)別
- asp獲取用戶真實(shí)IP地址的方法
- asp連接sqlserver數(shù)據(jù)庫實(shí)現(xiàn)代碼
- asp中正則表達(dá)式過濾html代碼函數(shù)
- asp中g(shù)et post提交表單區(qū)別
- 網(wǎng)頁模板:ASP內(nèi)建對象Request
- xmlhttp的open方法使用詳解
- ASP的常用的自定義函數(shù)大全
- asp中用for循環(huán)的一個小技巧
- eWebEditor v3.8 列目錄
- ASP無組件分頁實(shí)現(xiàn)思路及代碼
- 相關(guān)鏈接:
- 教程說明:
ASP教程-ASP調(diào)用web services。