I am writing a JAVA program for work that at some point needs to transfer files from the machine it is running on to another machine. The requirements are such that it can be configured to either do the transfer over FTP, SFTP, or a connection where the authentication is secure but data is transferred unencrypted.

Implementing the first two shouldn't be too bad with third party JAVA libraries. The issue I am having is with the third option. Seems like the only way to do that is by tunneling FTP over SSH.

As I am fairly inexperienced in this matter, wondering if anyone has any helpful suggestions. This can be done using either a reliable JAVA library (preferred) or some other tool that I just call as a separate process from within the program.

thanks

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

You can use Apache Commons VFS for file uploads and downloads. There is FTP and FTPS. The only prerequisite is that your remote system must run an FTP server. You do not have to call some external process. Just make your own application do the work. Remember to be careful with firewalls.

With FTPS only the control session is guaranteed to be encrypted. The data is transfered via regular FTP. Whether it is encrypted or not is up to you. You can use the PROT and CDC commands to control encryption.

link|improve this answer
Thanks for your response. I have looked into the Apache Commons, and you might be right that it can do what I'm trying to do. However, it seems it only supports FTP and FTPS as you mentioned. FTP is completely unencrypted whereas FTPS has encrypted authentication and data transfer. What I need is a middle solution where the authentication is encrypted but after that the actual data transfers for that one session are all unencrypted. I am wondering if Apache Commons by itself offers this capability or if I have to do something extra or something else to accomplish that. – Anonymous Sep 22 '11 at 21:35
I just updated the answer. – Costis Aivalis Sep 22 '11 at 22:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.