shashi2309
02-24-2009, 06:25 AM
Hi,
We have a requirement wherein a secure FTP implementation on a machine works over SSL and not SSH. I am using a JSCAPE client to perform secure FTP on this machine. I know that in case if ssh was running on this machine then we could have connected using the following code
SshParameters params = new SshParameters(host,user,password);
Sftp sftpClient = new Sftp(params);
sftpClient.connect();
How should I connect for SSL transport?
Please suggest
Thanks in advance
We have a requirement wherein a secure FTP implementation on a machine works over SSL and not SSH. I am using a JSCAPE client to perform secure FTP on this machine. I know that in case if ssh was running on this machine then we could have connected using the following code
SshParameters params = new SshParameters(host,user,password);
Sftp sftpClient = new Sftp(params);
sftpClient.connect();
How should I connect for SSL transport?
Please suggest
Thanks in advance