Hello,
I use the edtftpnet-1.1.9.dll in a VS.net C# project.
The source
FTPClient ftp = new FTPClient(Server);
//login etc.
ftp.ConnectMode = FTPConnectMode.ACTIVE;
ftp.TransferType = FTPTransferType.ASCII;
ftp.Put(localName, remoteName);
works fine on a XP machine with framework 1.1, but throws an error on a W2k.SP4 Server with the same framework version:
"550-Requested action not taken.
Couldn't turn around Entparser."
Any help appreciated!
Thanks...