Hello,
On some ftp-servers i got the error message, on others not. The code is ervy time the same:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim Ftp As New EnterpriseDT.Net.Ftp.FTPConnection
Ftp.Timeout = 120
Ftp.ConnectMode = EnterpriseDT.Net.Ftp.FTPConnectMode.PASV
Ftp.ServerAddress = "x.x.x.x"
Ftp.ServerPort = "21"
Ftp.UserName = "xxx"
Ftp.Password = "xxx"
Try
Ftp.Connect()
Ftp.Login()
Catch ex As Exception
MsgBox(ex.Message)
End Try
Ftp.Close()
End Sub
Is there any solution? thx.
Bruce