SOAP: Difference between revisions

67 bytes added ,  17 years ago
m
Categorizing programming examples
(Add ColdFusion)
m (Categorizing programming examples)
Line 5:
 
==[[ColdFusion]]==
[[Category:ColdFusion]]
<cfset client = createObject("webservice","http://example.com/soap/wsdl")>
<cfset result = client.soapFunc("hello")>
Line 10 ⟶ 11:
 
==[[PHP]]==
[[Category:PHP]]
 
<?php
$client = new SoapClient('http://example.com/soap/wsdl');
Line 27 ⟶ 28:
result = proxy.anotherSoapFunc(34234)
 
==[[VBSVBScript]]==
[[Category:VBScript]]
 
Dim client