That seems like a neat solution. :-)

Question:
Is it possible to send several files to one receiver in a similar way (e.g.
by providing a Collection<File> as body)? Naturally, I can iterate over the
file collection and send the files one by one, but I guess that the
performance would be better if all files can be sent during the same FTP
session. 


Claus Ibsen-2 wrote:
> 
> ProducerTemplate template = ...
> File target = new File("the file name here");
> 
> template.sendBodyAndHeader(ftpEndpointHere, target,
> Exchange.FILE_NAME, "the file name to be written on the ftp server");
> 

-- 
View this message in context: 
http://old.nabble.com/Dynamic-origin-file-components--tp28705368p28709030.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to