Nizami
Nizami

Reputation: 239

How to override property "Binding Operation" in SoapRequestNode iib?

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

Answers (2)

me10987
me10987

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

Daniel Steinmann
Daniel Steinmann

Reputation: 2199

Set the operation in the Local Environment:

SET OutputLocalEnvironment.Destination.SOAP.Request.Operation = 'myOperation';

Upvotes: 1

Related Questions