Hello all, Following the site documentation, it appears that Camel is capable of duplicating a message to multiple destinations by adding another <to /> element (talking Spring XML config here). For example, a Message received in channel queue:input can be duplicated and sent to two channels queue:input.application and queue:input.history with the following: <route> <from uri="queue:input" /> <to uri="queue:input.application" /> <to uri="queue:input.history" /> </route>
However in my case, I see only a few messages make it into the second destination (queue:input.history) but all make it through the first (queue:input.application). Is this incorrectly configured? is there a known issue? Any help would be appreciated! Thanks, David
