Re: SFTP Buffer size

2015-06-15 Thread arvind
There are no such parameters available to use directly. If you want to get it worked ,you need to change the code in deployed jar. It worked for me. -- View this message in context: http://camel.465427.n5.nabble.com/SFTP-Buffer-size-tp4630719p5768260.html Sent from the Camel - Users mailing lis

Re: How can I limit upload speed in Camel ftp ?

2015-06-01 Thread arvind
I found a solution to limit the bandwidth in FTP using these below two parameter in the URI with Camel FTP version 2.15.2 ftpClient.bufferSize= ftpClient.sendDataSocketBufferSize= ftp://a...@xx.xx.xx.xx:22/bcd?passiveMode=true&ftpClient.bufferSize=1024&ftpClient.sendDataSocketBufferSize=2048&disco

Re: How can I limit upload speed in Camel ftp ?

2015-05-05 Thread arvind
Thanks much Claus. -- View this message in context: http://camel.465427.n5.nabble.com/How-can-I-limit-upload-speed-in-Camel-ftp-tp5766707p5766711.html Sent from the Camel - Users mailing list archive at Nabble.com.

How can I limit upload speed in Camel ftp ?

2015-05-05 Thread arvind
How can I limit upload speed in Camel FTP . Camel FTP is consuming all the bandwidth over the network. I am transferring the files using Camel FTP 2.9.2 but I need to limit the rate they upload at so I don't want to take all the bandwidth . IE I need to limit uploads to 150kbps. Is there any UR

Re: Problem encrypting the password using Camel Jasypt component

2014-08-21 Thread arvind
Hi Claus, I have started this discussion after following the link shared by you but could not able to decrypt on the fly and have explained all the reported issue , so finally wrote own bean class to do encryption/decryption and trying to find a way to inject decrypted value into the from uri for t

RE: Problem encrypting the password using Camel Jasypt component

2014-08-21 Thread arvind
Hi All, As I am failed to do password encryption/decryption using camel Jasypt on the fly . I tried with my own Java bean class which does # reading the properties file. myproperties.properties - password= abc # changing the plain text to encrypted string and writin

Can we use processStrategy inside the in the URI to poll the files over sftp?

2014-08-05 Thread arvind
Hi I am running with camel 2.9.2 .Below is the from uri using to poll the files from SFTP to local directory ,it gets connected than disconnecting and throwing an issue " INFO org.apache.camel.component.file.remote.SftpOperations - JSCH -> Caught an exception, leaving main loop due to socket cl

RE: Problem encrypting the password using Camel Jasypt component

2014-08-04 Thread arvind
Hi All, while tracing the log I could see inside the below JasyptPropertiesParser.class => log.trace("Decrypting property {}", text) in the logs than camel stops and throws nullpointerexception . Any suggestion ? === package org.

RE: Problem encrypting the password using Camel Jasypt component

2014-07-24 Thread arvind
Thanks for your great help Ravi. I have regenerated the encrypted password using the master password and reading it from properties file but still the issue persists. Logs shows PropertiesComponent class parsing uri and properties but don't see JasyptPropertiesParser does any activity even if it

Re: Problem encrypting the password using Camel Jasypt component

2014-07-11 Thread arvind
Any comments on this ? -- View this message in context: http://camel.465427.n5.nabble.com/Problem-encrypting-the-password-using-Camel-Jasypt-component-tp5753644p5753723.html Sent from the Camel - Users mailing list archive at Nabble.com.

How to rename the file using spring DSL processed through FTP ?

2014-06-12 Thread arvind
Hi All, I am using camel 2.9.2 and trying to rename the file . I Could append anything to the file as suffix using *move* parameter but found no way to change complete file name after processing . Below is the xml using to transfer the file through FTP

Re: Restricting the duplicate files to be added into idempotent repository irrespective of cacheSize value

2014-05-16 Thread arvind
Thanks for showing the interest. The first post of mine consisting the xml file which I am using to transfer the file from FTP to local directory. It is working fine but when it crosses the number of files more than 5000 i.e the cacheSize value mentioned in the xml , the files are getting added mul

Re: Restricting the duplicate files to be added into idempotent repository irrespective of cacheSize value

2014-05-14 Thread arvind
I am trying to transfer the files from FTP to local directory .Currently the cache size value is 5000 . Yes I am seeing multiple entries of same file in the idempotent repository when the file entries crosses 5000. Is there any way that we can restrict to move the same file which is already being

Re: Restricting the duplicate files to be added into idempotent repository irrespective of cacheSize value

2014-05-12 Thread arvind
Please comment on this. -- View this message in context: http://camel.465427.n5.nabble.com/Restricting-the-duplicate-files-to-be-added-into-idempotent-repository-irrespective-of-cacheSize-vale-tp5750853p5751022.html Sent from the Camel - Users mailing list archive at Nabble.com.

Restricting the duplicate files to be added into idempotent repository irrespective of cacheSize value

2014-05-04 Thread arvind
Hello, I am using camel version 2.9.2 . Can anyone help me to know that, How to restrict duplicate files adding into idempotent repository irrespective of cache size , means any number of files in source directory but no files should be added twice to the repository .