Re: Com between beans

2012-09-21 Thread kikou1984
That's what i did for log, the data is not modified by the bean. Here the log after the split : "IN BEAN A " "IN BEAN A " "IN BEAN A " "IN BEAN A " "IN BEAN A " "IN BEAN B " "IN BEAN C " "IN BEAN D " "IN BEAN E " I want that each element of the split be able to continue the sequence, i want to se

Re: Com between beans

2012-09-21 Thread kikou1984
-> Sending another chaotic I will explain the problem as easily as possible : public void configure() { from("file:///D:/fileCamel/in?noop=true") .bean(First.class,"First") .split().met

Re: Com between beans

2012-09-20 Thread kikou1984
Hi, I tried this code : public void configure() { from("file:///D:/fileCamel/in?noop=true") // .bean(InitConcardisBean.class,"initialisation") .setHeader("TransactionClass",constant("net.awl.bfi

Re: Com between beans

2012-09-20 Thread kikou1984
Thank you for u r answer. I ll explain more :) Here the data : EclatCCTIBean.class -> public static ArrayList > eclatCCTI(Exchange exchange) EclatDBCRBean.class -> ArrayList lstTransac = (ArrayList ) exchange.getIn().getBody(); Suppose that the first Bean contains 5 elements of ArrayList . 1

Re: Com between beans

2012-09-20 Thread Claus Ibsen
On Thu, Sep 20, 2012 at 10:50 AM, kikou1984 wrote: > Hi , > > i understood , i used the split like this : > > try { > context.addRoutes( new RouteBuilder() { > public void configure() { >from("file:///D:/fileCamel/in?noop=

Re: Com between beans

2012-09-20 Thread kikou1984
Hi , i understood , i used the split like this : try { context.addRoutes( new RouteBuilder() { public void configure() { from("file:///D:/fileCamel/in?noop=true") // .bean(InitConcardisBean.class

Re: Com between beans

2012-09-20 Thread Claus Ibsen
He posted this same question on @dev first where we have given him an answer already. On Thu, Sep 20, 2012 at 9:18 AM, kikou1984 wrote: > Hi, > > I have a little problem, I do not know how to implement this idea. > > I explained the idea. > > I have this bean: .bean(EclatCCTIBean.class,"eclatCCT