Zookeeper component documentation

2012-01-03 Thread Hartmut Lang
Hi, for me it seems that the documentation for the zookeeper component is not correct: http://camel.apache.org/zookeeper.html. The examples for "reading from a znode" seems more like a writing example. But maybe i just don't get the point here. Hartmut

Howto use maxMessagesPerPoll and sortBy for file-consumer

2012-01-19 Thread Hartmut Lang
Hi, what i see from https://issues.apache.org/jira/browse/CAMEL-2899 is that maxMessagesPerPoll and sortBy option do not work well together for a FileConsumer endpoint. In our use-case we have several thousand files in a from("file:...") route. And every minute we want to process one file sort

RE: Howto use maxMessagesPerPoll and sortBy for file-consumer

2012-01-19 Thread Hartmut Lang
Ok, maybe it's a good idea to add this to the documentation for file2, "Sorting using sortBy" section. Thanks, Hartmut Lang -Original Message- From: Claus Ibsen [mailto:claus.ib...@gmail.com] Sent: Donnerstag, 19. Januar 2012 12:02 To: users@camel.apache.org Subject

SedaConsumer not removed on endpoint remove

2012-03-12 Thread Hartmut Lang
My scenario is to dynamically add and remove routes through some kind of registration-service. My routes have a seda input like: from("seda://seda-id").to("http://hostame";) Now the problem is, that if i remove the route and endpoints during runtime, the related "SedaConsumer" threadpool stays a

RE: SedaConsumer not removed on endpoint remove

2012-03-12 Thread Hartmut Lang
Good news! Is there a ticket-number for this? /Hartmut -Original Message- From: Claus Ibsen [mailto:claus.ib...@gmail.com] Sent: Montag, 12. März 2012 11:39 To: users@camel.apache.org Subject: Re: SedaConsumer not removed on endpoint remove On Mon, Mar 12, 2012 at 11:33 AM, Hartmut Lang

Problems with dynamic seda-routes in 2.10.0

2012-07-06 Thread Hartmut Lang
Hi, i have a problem with dynamically adding/removing seda-routes with the latest camel 2.10.0 release. It works for me with 2.9.2. My setup: - i have a dynmicRouter and i add and remove new seda-routes (from seda to http) on a specific registration/deregistration event in my system - the first

RE: Problems with dynamic seda-routes in 2.10.0

2012-07-09 Thread Hartmut Lang
("sedaToMock"); camelContext.removeRoute("sedaToMock"); camelContext.addRoutes(createRouteBuilder()); out.reset(); out.expectedMessageCount(1); template.sendBody("seda:in", "Test Message");

RE: Problems with dynamic seda-routes in 2.10.0

2012-07-09 Thread Hartmut Lang
https://issues.apache.org/jira/browse/CAMEL-5432 -Original Message- Yeah log a JIRA On Mon, Jul 9, 2012 at 9:49 AM, Hartmut Lang wrote: > This is a test-case that runs with Camel 2.9.2 but fails with 2.10.0. > Am i doing something wrong, should i file a JIRA? >