Hi, How can I consume multiple JMS messages in one single transaction with Camel? Is it even possible?
from("jms:myqueue").transacted().to("something") will create a transaction per consumed message, which is not what I want. I actually want to consume X messages, aggregate them to a report and then produce that report to the same JMS resource... Takk, Thomas