Support array value headers in dynamic recipient list
-----------------------------------------------------
Key: CAMEL-801
URL: https://issues.apache.org/activemq/browse/CAMEL-801
Project: Apache Camel
Issue Type: Improvement
Components: camel-core, camel-spring
Affects Versions: 1.4.0
Reporter: Jonathan Anstey
Fix For: 1.5.0
Attachments: supportDynamicRecipientListWithArrayHeader.patch
I noticed that you can't currently specify something like the following (where
the header is an array of values):
{code:language=xml}
<route>
<from uri="seda:a"/>
<recipientList>
<header>recipientListHeader</header>
</recipientList>
</route>
{code}
which is equivalent to the Java DSL
{code:language=java}
from("seda:a").recipientList(header("recipientListHeader"));
{code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.