Jump to content

SOAP: Difference between revisions

104 bytes removed ,  14 years ago
→‎{{header|AutoHotkey}}: No need to use WS_CreateObject() if AHK doesn't use the object. Simpler to let the VB environment create the object.
(add Ruby)
(→‎{{header|AutoHotkey}}: No need to use WS_CreateObject() if AHK doesn't use the object. Simpler to let the VB environment create the object.)
Line 26:
{{libheader|ws4ahk}}
<lang AutoHotkey>WS_Initialize()
objWS_Exec("Set client := WS_CreateObjectCreateObject(""MSSOAP.SoapClient"")")
WS_AddObject(obj, "client")
WS_ReleaseObject(obj) ; scripting environment has object, we don't need it anymore
callhello = client.soapFunc("hello")
callanother = client.anotherSoapFunc(34234)
Line 37 ⟶ 35:
WS_Uninitialize()
#Include ws4ahk.ahk ; http://www.autohotkey.net/~easycom/ws4ahk_public_api.html</lang>
 
=={{header|ColdFusion}}==
<lang cfm> <cfset client = createObject("webservice","http://example.com/soap/wsdl")>
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.