Hi,
I have written a C# Windows Forms app with your edtftpnet 1.1.5 component. The following code works fine on two computers, but on the 3rd I get this error:
No connection could be made because the target machine actively refused it.
---
The target machine is always "members.cox.net". Since I cannot reproduce this error on my machine, I'm not sure what to do. Has anyone seen this error, and do you know what I can do about it?
using EnterpriseDT.Net.Ftp;
...
try
{
f.ReportStatus("Connecting to server...\r\n");
FTPClient ftp = new FTPClient(f.journal.server);
if (DoEvents() && f.canceled)
return;
ftp.Login(f.journal.username, Encrypter.Encrypt(f.journal.password));
if (DoEvents() && f.canceled)
return;
...
}
catch(Exception ex)
{
f.ReportError(ex.Message);
f.btnCancel.Text = "OK";
return;
}
FYI, it works on a Win2K and XP machine, but fails on an XP machine.
Thanks,
Justin