Hi

>From the link in James mail there is a link to the dynamic EIP :)

The entire EIP pattern catalog is here:
http://camel.apache.org/enterprise-integration-patterns.html

There is a menu item to it from the Camel front page

The dynamic recipient list is here:
http://camel.apache.org/recipient-list.html

On Tue, Jan 27, 2009 at 2:33 PM, Nivi shri <nivis...@gmail.com> wrote:
>
> Hi All
>
> It would be helpful if some1 can point out to a link which demonstrates how
> to implement the dynamic recipient list.
>
> Regards
> Nivi
>
>
> James.Strachan wrote:
>>
>> I've just added support for @RecipientList annotation on a bean method
>> to implement a dynamic recipient list.
>>
>> This can be used when using @MesageDriven or @Consume to call the
>> method when messages arrive, or if the bean method is explicitly
>> invoked from a route.
>>
>> e.g.
>>
>> public class RouterBean {
>>
>>     @MessageDriven(uri = "activemq:foo")
>>     @RecipientList
>>     public String[] route(String body) {
>>         return new String[]{"activemq:bar", "activemq:whatnot"};
>>     }
>> }
>>
>> you can return a single Endpoint or object that can be converted into
>> a String; or a collection or array of such objects.
>>
>> More documentation is here...
>> http://cwiki.apache.org/CAMEL/recipientlist-annotation.html
>>
>> As usual feedback welcome!
>>
>> --
>> James
>> -------
>> http://macstrac.blogspot.com/
>>
>> Open Source Integration
>> http://open.iona.com
>>
>>
>
> --
> View this message in context: 
> http://www.nabble.com/-HeadsUp--implementing-Dynamic-Recipient-Lists-using-annotations-tp19763707s22882p21685364.html
> Sent from the Camel - Development mailing list archive at Nabble.com.
>
>



-- 
Claus Ibsen
Apache Camel Committer

Open Source Integration: http://fusesource.com
Blog: http://davsclaus.blogspot.com/

Reply via email to