Re: How to implement (dynamic) rule engine with camel.

2010-09-13 Thread GSegel
Claus Ibsen-2 wrote: > > Hi > > The dynamic router EIP pattern > http://camel.apache.org/dynamic-router.html > > And you can add/remove routes at runtime using the CamelContext API. > > Nice! This will probably work for the issue I posted about also! -- View this message in context: http

Re: How to implement (dynamic) rule engine with camel.

2010-09-13 Thread GSegel
Naira & Kobo wrote: > > This means, if I have endpoints A, B, C, D, E, F > The first use case can be: A -> D -> E -> F > The second use case: A -> B -> C -> F > Adding the second use case should require a restart of the camel > application. > Does Camel need to be restarted to switch between t

Re: How to implement (dynamic) rule engine with camel.

2010-09-13 Thread Claus Ibsen
Hi The dynamic router EIP pattern http://camel.apache.org/dynamic-router.html And you can add/remove routes at runtime using the CamelContext API. On Mon, Sep 13, 2010 at 10:45 AM, Naira & Kobo wrote: > > Hi all, > > I was just wondering what would be the best way to use camel to create > rout

Re: How to implement (dynamic) rule engine with camel.

2010-09-13 Thread Willem Jiang
Camel internal API supports to change the camel route dynamically. You can use JMX to export a route management interface or use webconsole[2] to change it. [1] http://camel.apache.org/web-console.html Willem On 9/13/10 4:45 PM, Naira & Kobo wrote: Hi all, I was just wondering what would b