How to override only OutputLocalEnvironment.Destination.REST.Request.BaseURL property in IIB?

545 Views Asked by At
  • This is part of the flow, if I rewrite the url and configure at ComputeNode(ComPrepare) the URL is overwritten, everything works fine.

enter image description here

  • But REST Request Node(postRegister) will lose headers as part of my config in REST Request node(postRegister). So how can I rewrite the URL in ComputeNode(ComPrepare) and keep the header at the REST Request node(postRegister)?
1

There are 1 best solutions below

0
devman On BEST ANSWER

I'm resolved my problem. I set configuration in compute node:

SET InputLocalEnvironment.Destination.REST.Request.BaseURL = 'http://localhost:8888/thanbv';

And I set default compute mode is Message. Thanks for everyone :v