tabrez
tabrez

Reputation: 21

Apache Commons FTPClient issue - 425 Can't build data connection: Connection refused

I am trying to connect a remote ftp server using Apache Commons FTP library, i am able to log into FTP server but after that i am not able to issue any command and getting following error when trying to retrieve file.

425 Can't build data connection: Connection refused. but I am facing no issue while login using MS-DOS command prompt.

Do anybody know what would be the issue ?

Thanks.

Upvotes: 2

Views: 2247

Answers (1)

Dave Whittingham
Dave Whittingham

Reputation: 338

Without seeing code this is a stab in the dark, but have you tried the following

client.enterLocalPassiveMode();

if you are uploading from a local machine to a remote FTP server. I remember I had a similar problem and doing the above worked

Upvotes: 4

Related Questions