SOAP: Difference between revisions

Content added Content deleted
No edit summary
mNo edit summary
Line 10: Line 10:
$result = $client->anotherSoapFunc(34234);
$result = $client->anotherSoapFunc(34234);
?>
?>

==[[VBS]]==

Dim client
Dim result
Set client = CreateObject("MSSOAP.SoapClient")
client.MSSoapInit "http://example.com/soap/wsdl"
result = client.soapFunc("hello")
result = client.anotherSoapFunc(34234)


==[[Python]]==
==[[Python]]==
Line 29: Line 20:
result = proxy.soapFunc("hello")
result = proxy.soapFunc("hello")
result = proxy.anotherSoapFunc(34234)
result = proxy.anotherSoapFunc(34234)

==[[VBS]]==

Dim client
Dim result
Set client = CreateObject("MSSOAP.SoapClient")
client.MSSoapInit "http://example.com/soap/wsdl"
result = client.soapFunc("hello")
result = client.anotherSoapFunc(34234)