Hello, currently I have the problem of not beeing able to set servlet response which was generated by the last processor of my route:
servlet-consumer -> processor1 -> onCompletion -> aggregate -> processor2 (response builder) When I fire my test to the deployed servlet endpoint (camel 2.10.4 @ JBoss 7.1) it behaves in the order that: 1. body of processor1 is returned as http response 2. after that, processor2 starts which is too late as the response is still sent. How to force the route to send the response only when processor2 is done? regards Christian