Hello,
I have a process with a number of service and user tasks. During the execution of these tasks the process should get data (JSON, binary) from REST backend.
Service tasks retrieve data by http-connector, and user tasks use cam-script like:
inject([‘$scope’, ‘$http’, function ($scope, $http)
API keys/secrets of these services stored in system properties that I can extract by java.lang.System.getProperties(“secret”) and substitute in Service task API call.
Is it possible to get system properties in cam-script without the use of process variables?
System.getProperties doesn’t work