Re: camel-ftp File transfer not working route failing>

2014-09-12 Thread Claus Ibsen
Hi Please use the user forum / user mailing lists On Sat, Sep 13, 2014 at 1:31 AM, rambabu wrote: > My code is as follows: > > from("file://"+fromFileBasePath+"?delay=500&delete=true") > .to("bean:readExcelFileService?method=readInputFile(${body})") > .choice() >.when(simple("${body}")) >

camel-ftp File transfer not working route failing>

2014-09-12 Thread rambabu
My code is as follows: from("file://"+fromFileBasePath+"?delay=500&delete=true") .to("bean:readExcelFileService?method=readInputFile(${body})") .choice() .when(simple("${body}")) .log(LoggingLevel.INFO,"SUCCESS===") .to("file://"+toFileBasePath) .otherwise() .log(Loggin