In my case, I have a some service tasks that call a RESTful Web Services. For this I use the expression on a service task like this: (#{restCaller.get(execution, 'policies/{policyId}/premium')} )
In the CDI @Named class, I call the service. For this reasons, I need the server name and username/password from a batch user.
I think the right place for this could be bpm-platform.xml. In this file, I have already defined my IdentityService with some configuration stuff.
Now my problem is, I don't know how I can get information from bpm-platform.xml.
In my service task I have only the class DelegateExecution
Do you have any ideas for me?
Thanks, Matthias