Hi,
I am able to successfully connect to a site using the FTPS protocol, but when I attempt to transfer files, it throws the exception, "File I/O Exception occured"
I am able to use Tumbleweed with the same settings and connect and transfer files accordingly, so I believe that I am missing a setting. The network admin thinks that Tumbleweed opens a tunnel. Is there any such setting to manipulate tunnels with enterpriseDT?
''''''''''''''''''Code
Dim ftp As New EnterpriseDT.Net.Ftp.SecureFTPConnection()
ftp.UserName = "un"
ftp.Password = "pwd"
ftp.ServerAddress = "server"
ftp.ServerPort = 21
ftp.Protocol = EnterpriseDT.Net.Ftp.FileTransferProtocol.FTPSExplicit
ftp.ConnectMode = EnterpriseDT.Net.Ftp.FTPConnectMode.ACTIVE
ftp.UseUnencryptedCommands = True
ftp.Connect() ''Works up to this point
Try
ftp.UploadFile(localFileName, feedBackDirectoryName) ''Bombs out here
Catch Ex As Exception
End Try
ftp.Close()