On 29 September 2011 10:16, Roman Makurin <[email protected]> wrote:
> Hi all!
>
> I have question about commons-net FTPSClient. Looks like data
> connection not encrypted by default, but I`m forced to use only secure
> connection, couse ftp server reject unencrypted. So, how can I turn on
> data channel encryption on?
>
>
> here is my core:
>
> FTPSClient ftpClient = new FTPSClient();
Try:
FTPSClient ftpClient = new FTPSClient(true);
> ftpClient.connect(host, port);
> ftpClient.enterLocalPassiveMode();
> ftpClient.login(user, pass);
> ftpClient.listFiles("/");
> ftpClient.logout();
>
> and i have following error messgae from server:
> 522 You have to turn on secure data connection.
>
> Thanks
>
> --
> If you think of MS-DOS as mono, and Windows as stereo,
> then Linux is Dolby Digital and all the music is free...
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]