Our Products:   CompleteFTP  edtFTPnet/Free  edtFTPnet/PRO  edtFTPj/Free  edtFTPj/PRO
0 votes
3.2k views
in .NET FTP by (120 points)
I am using edtFTPNet/express. It appears to be connected, then it seems to be trying to use the password command after it is logged in.

Reply: 220 ken09 FTP server (Version wu-2.4(2) Sat Apr 13 19:28:32 EDT 2002) ready.
Command: ---> USER prod_profitmkr
Reply: 331 Password required for prod_profitmkr.
Command: ---> PASS ********
Reply: 230 User prod_profitmkr logged in. Access restrictions apply. MBID=006T5V
Command: ---> TYPE I
Reply: 200 Type set to I.
Command: ---> PWD
Reply: 502 PWD command not implemented.
Command: ---> PWD
Reply: 502 PWD command not implemented.

1 Answer

0 votes
by (162k points)
It isn't trying to log in again - it is asking for the current working directory which is what PWD does. It is extremely unusual that a server does not support PWD.

You can work around this by doing the following:

ftp.AutoLogin = false;
ftp.Connect();
ftp.Login();

Categories

...