
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-16-2017 10:18 AM
I'm curious if anyone has created a solution for dynamically setting the endpoint for different environments using the Workflow Custom Activities? On that form you just select the SOAP message, function, and endpoint. You don't have a way to call "setEndPoint". I also tried using ${gs.getProperty('acom.oracle.' + gs.getProperty('instance_name') + '.endpoint')} in the endpoint and it doesn't seem to translate on execution.
Solved! Go to Solution.
- Labels:
-
Orchestration
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-17-2017 07:13 AM
Eric,
You need to set the end point to the input variable and then use it in End Point field.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-17-2017 07:13 AM
Eric,
You need to set the end point to the input variable and then use it in End Point field.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-17-2017 01:54 PM
That seems to have worked!
I would have expected ${gs.getProperty('acom.oracle.' + gs.getProperty('instance_name') + '.endpoint')} to work just as good as ${activityInput.Endpoint} but alas, I should not make assumptions.
thank you
Eric