We call several rest services from our process instances and have the requirement to send the id of the current executed process instance in a http header field. Therefore I would like to use a common jax-rs ClientRequestFilter like this:
public class CommonHeadersInjector implements ClientRequestFilter {
No I am not necessarily in a delegate task or execution, but for sure, there is a process instance running. As I’ve posted above, I would like to do it with a http filter (in this case a ClientRequestFilter) or any other generic solution, independent from a JavaDelegate.