On Mon, Nov 29, 2010 at 1:48 PM, Marco Bettiol wrote:
> Claus... It's me again. Sorry.
> I moved the filter logic to the AggregateStrategy
> I tried some variants to insert "end()" such as:
>
>
> from("file:/Users/marcobettiol/IES/data?noop=true")
>
> .split(body().tokenize("\n"), new TVCEOrderAgg
Claus... It's me again. Sorry.
I moved the filter logic to the AggregateStrategy
I tried some variants to insert "end()" such as:
from("file:/Users/marcobettiol/IES/data?noop=true")
.split(body().tokenize("\n"), new TVCEOrderAggregateStrategy())
.end()
.to("file:/Users/marcobettiol/IES/copy?au
On Mon, Nov 29, 2010 at 10:26 AM, Marco Bettiol wrote:
> I'm using 2.5.0.
> Ok I will try with your solution and let you know. :)
> P.S.
> Just for knowledge... Is my code right?
>
No the filter should not be in the split. Camel will always invoke the
AggregationStrategy for each splitted message
I'm using 2.5.0.
Ok I will try with your solution and let you know. :)
P.S.
Just for knowledge... Is my code right?
2010/11/29 Claus Ibsen
> Hi
>
> What version of Camel are you using?
>
> And you can also do your filter logic in the aggregator. Just return
> oldExchange if the newExchange shoul
Hi
What version of Camel are you using?
And you can also do your filter logic in the aggregator. Just return
oldExchange if the newExchange should be skipped.
On Sun, Nov 28, 2010 at 9:39 PM, Marco Bettiol wrote:
> Hi guys,
>
> I'm new to apache Camel. It sound really great.
>
> I was trying t
Hi guys,
I'm new to apache Camel. It sound really great.
I was trying to build my first application. I got a file with entries of
different type and I want to generate a new file with only a subset of the
lines (in the final version I will have to build up a POJO and send it using
web-service).