SFTP Connect Delphi (Unrecognized Error) (wodSFTP / wodSFTP.NET / wodSFTPdll)
Hi,
I am making the connection to SFTP and are returning this error message when I connect.
The same script works for other SFTPs, only one in spec does not work.
SFTP.Blocking := True;
SFTP.Hostname := 'sftp.test.com.br';
SFTP.Login := 'login';
SFTP.Port := 22;
SFTP.TransferMode := 0;
SFTP.Password := 'pass';
SFTP.Authentication := authPassword;
SFTP.ProxyType := proxyNone;
SFTP.Timeout := 30000;
SFTP.Connect;
Error Message "Unrecognized Error"
I dont have idea what it is.
Help Please.