SOAP
// Create a SOAP client from WSDL
ws = soap( "http://example.com/service.wsdl" )
// Invoke a SOAP operation: methodName, passing arguments as an array
result = ws.invoke( "methodName", [ arg1, arg2 ] )
// With authentication and timeout configuration
ws = soap( "http://example.com/service.wsdl" )
.setTimeout( 60 )
.setAuthentication( "user", "pass" )
result = ws.invoke( "methodName", [ arg1, arg2 ] )
Method Signature
SOAP(URL=[string])Arguments
Argument
Type
Required
Description
Default
Examples
Related
Last updated
Was this helpful?
