HTML網頁中調用方法
〈form target=
_blank
action=
method=
POST
〉
〈table cellspacing=
cellpadding=
frame=
box
bordercolor=
#dcdcdc
rules=
none
〉
〈tr〉
〈td class=
frmHeader
background=
#dcdcdc
〉參數〈/td〉
〈td class=
frmHeader
background=
#dcdcdc
〉值〈/td〉
〈/tr〉
〈tr〉
〈td class=
frmText
〉sTypeNum:〈/td〉
〈td〉〈input class=
frmInput
type=
text
size=
name=
sTypeNum
〉〈/td〉
〈/tr〉
〈tr〉
〈td〉〈/td〉
〈td align=
right
〉 〈input type=
submit
value=
調用
class=
button
〉〈/td〉
〈/tr〉
〈/table〉
〈/form〉
實例:如何調用服務產生
位關鍵值
相關文檔: 使用vbscript腳本調用web服務
ASP中調用方法(SOAP方式)
實例:如何使用asp調用服務產生
位關鍵值 asp源文件代碼
說明:總的來講采用webservice的列表頁說明來構造不同的SoapRequest
然後
從返回xmlDoc中取返回值xmlDOC
getElementsByTagName
ASP中調用方法(HTTP方式)
實例:如何使用asp調用服務產生
位關鍵值 asp源文件代碼
VB
中調用方法
Dim strxml As String
Dim str As String
str = Text
Text
定義soap消息
strxml =
xmlns:xsi=
xmlns:xsd=
xmlns:soap=
>
& str &
定義一個http對象
一邊向服務器發送post消息
Dim h As MSXML
ServerXMLHTTP
定義一個XML的文檔對象
將手寫的或者接受的XML內容轉換成XML對象
Dim x As MSXML
DOMDocument
初始化XML對象
Set x = New MSXML
DOMDocument
將手寫的SOAP字符串轉換為XML對象
x
loadXML strxml
初始化http對象
Set h = New MSXML
ServerXMLHTTP
向指定的URL發送Post消息
h
open
POST
False
h
setRequestHeader
Content
Type
text/xml
h
send (strxml)
While h
readyState <>
Wend
顯示返回的XML信息
Text
Text = h
responseText
將返回的XML信息解析並且顯示返回值
Set x = New MSXML
DOMDocument
x
loadXML Text
Text
Text
Text = x
childNodes(
)
Text
VB
NET中調用方法
首先添加web引用
地址為:
定義:dim sCom as New net
ydcom
www
S_COMM
調用:dim strCZID as string = sComm
GetCZID(
)
實例:如何使用VB
NET調用服務產生
位關鍵值 VB
NET源文件代碼
PB
NET(PB
)中調用方法
SoapConnection conn
Test_wsservice
soap sCom
long rVal
//string str_endpoint
//str_endpoint =
conn = create SoapConnection
rVal = Conn
CreateInstance(sCom
test_wsservice
soap
)
sle_
text = sCom
GetCZID(
))
destroy conn
From:http://tw.wingwit.com/Article/program/Delphi/201311/8420.html