SOAP: Difference between revisions

247 bytes added ,  14 years ago
no edit summary
m (moved SOAP Client to SOAP)
No edit summary
Line 66:
print_r($client->__getFunctions());
?></lang>
 
=={{header|Purebasic}}==
<lang Purebasic>
XIncludeFile "COMatePLUS.pbi"
soap = COMate_CreateObject("MSSOAP.SoapClient")
soap\MSSoapInit("http://example.com/soap/wsdl")
result = soap\soapFunc("hello")
result2 = soap\anotherSoapFunc(34234)
</lang>
 
=={{header|Python}}==
Anonymous user