File and FTP Components

2013-04-11 Thread AbhishekSamuel
Hi, I am using the FTP component with all the options such as preMove, frequency, regular expression include for polling directories. However, my requirement is not to actually read the file into memory or copy it to another location, but just to generate an event and send a JMS. I believe there

JMS Component - Customized messageConverter

2013-04-11 Thread AbhishekSamuel
Hi, I am trying to send a customized JMS MapMessage. I am using custom MessageConverter to solve this purpose. However, i wish to send information that is not specific to a route. Am using the syntax below from("file://inbox/order").to("jms:queue:order?messageConverter=#myMessageConverter"); wh

Re: JMS Component - Customized messageConverter

2013-04-11 Thread AbhishekSamuel
Hey, I understand spring supports it out of the box, but the object information is not available at spring initialization time. I have the object information at run time and if i cant use the constructor method, at least if there is a way of accessing the setter method of myMessageConverter, that

Re: JMS Component - Customized messageConverter

2013-04-14 Thread AbhishekSamuel
Hey Claus, Thanks for the reply. Am new to this configuration with spring. How do i go about calling the setter method for the myMessageConverter object given the syntax am using below ? from("file://inbox/order").to("jms:queue:order?messageConverter=#myMessageConverter"); Thanks Abhishek Samu

Re: File and FTP Components

2013-04-18 Thread AbhishekSamuel
Hey, Any update on version 2.11 ? Has it been officially released yet ? Thanks Abhishek Samuel -- View this message in context: http://camel.465427.n5.nabble.com/File-and-FTP-Components-tp5730723p5731083.html Sent from the Camel - Users mailing list archive at Nabble.com.

FTP Concurrency - Single threaded or not

2013-04-18 Thread AbhishekSamuel
Hi, Am aware that the ftp component does not support concurrency, that is multiple files cannot be downloaded at the same time, as it is single threaded. So does adding the threads method after the ftp comonent have no effect ? For example while configuring a route like below from(ftp Source).ro