SOAP: Difference between revisions

188 bytes added ,  17 years ago
Add ColdFusion
mNo edit summary
(Add ColdFusion)
Line 2:
 
In this task, the goal is to create a SOAP client which accesses functions defined at '''http://example.com/soap/wsdl''', and calls the functions '''soapFunc( )''' and '''anotherSoapFunc( )'''.
 
 
==[[ColdFusion]]==
<cfset client = createObject("webservice","http://example.com/soap/wsdl")>
<cfset result = client.soapFunc("hello")>
<cfset result = client.anotherSoapFunc(34234)>
 
==[[PHP]]==
Anonymous user