I'm using Rebex FTP/SSl trial version for testing.
I can login to the FTP server requires implicit SSL, get file list, but not download files. The component always reports the following error:
File action is not taken (450)
The code is like this:
Dim ftp As New Ftp
ftp.Settings.SslServerName = myServer
ftp.Connect(FtpIp, 990, SslMode.Implicit)
ftp.Login(FtpAcc, FtpPw)
...
ftp.GetFile(FileName, targetFileName)
But I CAN download files from the FTP server via other FTP client. Could anyone tell me what went wrong? (Trial period expired? Limited file transfer?) Any setting might be relevant to this?