0

I am currently working on a project which requires sending of files of moderate sizes to a server at a distant location using ftp. I've come across two methods to achieve it; Apache Camel and Spring FTP. I would like to know which of these two is better to use in my situation.

  • I am sending confidential text files
  • There is poor connectivity, but I need guaranteed delivery
  • Server will probably be Amazon cloud

Also, is there some mechanism to distinguish between files which are received completely and partially at the server?

Tezra
  • 8,463
  • 3
  • 31
  • 68
Milan
  • 47
  • 6
  • Reorganized information for clearer reading and some grammar corrections. Is "Spring OutboundChannel" the same thing as "Spring FTP"? – Tezra Aug 10 '17 at 15:19

1 Answers1

0

Apache Camel has a lot of out of the box functionality that would otherwise need to be developed in the spring application (using Spring FTP). Examples of this are error handling with re-delivery attempts and separate thread running.

With this, I would suggest to use Camel

user3206236
  • 315
  • 5
  • 14