Hello, I'm considering purchasing this component so downloaded the trial to make sure it will work with what I'm trying to do. I'm having problems with the connect function:
SecureFTPConnection fConnection = new SecureFTPConnection();
fConnection.ServerAddress = Host;
fConnection.ServerPort = 22;
fConnection.UserName = Username;
fConnection.Password = Password;
fConnection.Protocol = FileTransferProtocol.SFTP;
fConnection.ServerValidation = SecureFTPServerValidationType.None;
fConnection.Connect();
Every time I try to connect to my SFTP server it stops at the SSH2_MSG_CHANNEL_REQUEST command and stays there till it times out. If anyone can help me I would appreciate it. If I get this working I will be purchasing this component. Thanks ahead of time.