Scripting Interfaces: Flow Related Objects

WSDLResource:

Synopsis
Used to specify the location of a Web Service as a resource. The URI points to the WSDL for the Web Service to be invoked. Once this is specified, we use additional parameters to specify the operation to invoke and the parameters to this operation.
E.g.
x = new WSDLResource();
x.wsdl = "location of WSDL";
x.operation = "operationToInvoke";
x.param[0] = "param0";
x.param[1] = "param1";
x.param[2] = "param2";
...
x.param[N] = "paramN";

Status: Implemented

(back to Notes)