Reputation: 239
I am consuming a web service in IBM integration toolkit having multiple operations. How can I change the binding operation property dynamically at run time so that same SoapRequestNode can be used for all operations?
Upvotes: 0
Views: 533
Reputation: 1
Yes Setting the Value Runtime can be achieved through your ESQL code before SOAPRequest Node. Just assign the below field with required Operation as per requirement
SET OutputLocalEnvironment.Destination.SOAP.Request.Operation = 'requiredOperation';
Upvotes: 0
Reputation: 2199
Set the operation in the Local Environment:
SET OutputLocalEnvironment.Destination.SOAP.Request.Operation = 'myOperation';
Upvotes: 1