SOAP: Difference between revisions

Content added Content deleted
(Add ColdFusion)
m (Categorizing programming examples)
Line 5: Line 5:


==[[ColdFusion]]==
==[[ColdFusion]]==
[[Category:ColdFusion]]
<cfset client = createObject("webservice","http://example.com/soap/wsdl")>
<cfset client = createObject("webservice","http://example.com/soap/wsdl")>
<cfset result = client.soapFunc("hello")>
<cfset result = client.soapFunc("hello")>
Line 10: Line 11:


==[[PHP]]==
==[[PHP]]==
[[Category:PHP]]

<?php
<?php
$client = new SoapClient('http://example.com/soap/wsdl');
$client = new SoapClient('http://example.com/soap/wsdl');
Line 27: Line 28:
result = proxy.anotherSoapFunc(34234)
result = proxy.anotherSoapFunc(34234)


==[[VBS]]==
==[[VBScript]]==
[[Category:VBScript]]


Dim client
Dim client