A user of one of mny applications is reporting an error User cannot log in (530) ftp is trying to when trying to log on. He is using IIS 6.0 on Windows Server 2003.
Here is the logon code :
If FTPHost <> "" Then
ftp = New Rebex.Net.Ftp()
Try
ftp.Connect(FTPHost)
UpdateStatus("Logging on")
ftp.Login(FTPUserName, FTPPassword)
ftp.SetTransferType(Rebex.Net.FtpTransferType.Binary)
ftp.ChangeDirectory("\Upload")
UpdateStatus("Uploading")
FTPHost, FTPUserName and FTPPassword as set up correctly at thbis point. They are able to log in with the same credentials using FileZills FTP client.
Can anyone suggest why this is happensing and /or what I can do abot it ?
Many thanks
Martin