Re: Camel filter didn't work

2017-02-08 Thread shubho
Now i am getting this error 14:43:53,236 ERROR [org.springframework.web.context.ContextLoader] (MSC service thread 1-7) Context initialization failed: org.apache.camel.RuntimeCamelException: org.apache.camel.FailedToCreateRouteException: Failed to create route rout3: Route

Re: Camel filter didn't work

2017-02-08 Thread shubho
yes you are right..i find the missing jar for spring. But still i am getting error.I think its beacause of camel. -- View this message in context: http://camel.465427.n5.nabble.com/Camel-filter-didn-t-work-tp5793594p5793644.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Camel filter didn't work

2017-02-07 Thread Condello, Giovanni
It looks more of a spring issue than a camel one: CannotLoadBeanClassException: Cannot find class [in.client.camelbean.MyFileFilter] for bean with name 'myFilter' Make sure you don't have a typo in your spring xml file 2017-02-07 18:10 GMT+01:00 shubho : > Hi, > I am trying to transfer file t

Re: Camel Filter appears to delete files instead of leaving them be.

2014-08-22 Thread grimfury
Thanks Claus. I tried with putting noop=true like this As stated, the files did not delete - which is great. Unfortunately however, the non-gzipped file also did not delete. But we've found a working solution now, after looking at that file2 documentation: Implement GenericFileFilter and in

Re: Camel Filter appears to delete files instead of leaving them be.

2014-08-21 Thread Claus Ibsen
Use the noop=true to leave the file untouched. Camel moves the file to .camel by default. Check the file documentation http://camel.apache.org/file2 On Fri, Aug 22, 2014 at 8:38 AM, grimfury wrote: > Hi all, > This task seems so easy and yet I can't get it done. > > The task is to look through th

Re: Camel Filter Bean when return value is false

2014-06-17 Thread ychawla
I can do this:

Re: Camel Filter

2013-11-25 Thread Christian Posta
Well, it looks like you don't have a completion scenario specified for your aggregator. The aggregator needs to know "when is an aggregate completed" See the wiki here: http://camel.apache.org/aggregator2.html Additionally, you may consider that the splitter uses an aggregator built in to it. This