Our Products:   CompleteFTP  edtFTPnet/Free  edtFTPnet/PRO  edtFTPj/Free  edtFTPj/PRO
0 votes
3.7k views
in .NET FTP by (180 points)
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...

1 Answer

0 votes
by (51.6k points)
This error
"550-Requested action not taken. Couldn't turn around Entparser."

is a server error which indicates that the server is unable to write the file for some reason. Check that there is no problem with permissions on the server. While testing, you might like to try uploading using a GUI FTP client such as FileZilla.

- Hans (EDT Support)

Categories

...