Java 7 prevents FTP transfers on Windows Vista and 7.

In FTP, before a file is transferred a PORT or a PASV command must be sent. As soon as one of the commands is sent the Windows Firewall closes the socket that sent it. This only happens if the firewall is on and an exception for java.exe is absent. I suspect this problem is related to Java 7 using the new Vista IP stack.

Does anyone have any ideas how to fix or work around this problem? We're distributing a Java FTP library so we obviously can't add exceptions ourselves.

Exception:

java.net.SocketException: Permission denied: recv failed

JRE version info:

java version "1.7.0"
Java(TM) SE Runtime Environment (build 1.7.0-b147)
Java HotSpot(TM) 64-Bit Server VM (build 21.0-b17, mixed mode)

FOLLOW-UP: Oracle has analysed the problem and have found that it seems to be a bug in Windows Firewall and/or the IPv6 stack. They managed to replicate the problem with a native C (i.e. non-Java app), so this is strong evidence that the bug is not in Java. They have informed Microsoft, so the ball is in their court now.

More details can be found at http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7077696

link|improve this question

50% accept rate
2  
Very annoying indeed, it also affects the Ant FTP task: java.net.SocketException: Permission denied: recv failed at org.apache.tools.ant.taskdefs.optional.net.FTP$FTPDirectoryScanner.forceRemoteSe‌​nsitivityCheck(FTP.java:695) – Cookie Monster Oct 31 '11 at 10:08
workaround: stackoverflow.com/questions/10473518/… – MacGyver May 6 at 19:34
feedback

6 Answers

The problem is caused by the stateful FTP filter of the firewall. As a workaround you can disable it by executing netsh advfirewall set global StatefulFTP disable with administrator rights.

link|improve this answer
This workaround works like a charm. – Cookie Monster Oct 31 '11 at 10:13
I can also confirm this workaround works great. – PeterBelm Nov 21 '11 at 20:58
I get command not found for advfirewall ("Befehl wurde nicht gefunden")... – PiTheNumber May 23 at 8:50
And here I was thinking that there was something wrong with my code. Stupid Win7 firewall + Java interactions. +1. – aroth May 26 at 7:34
feedback
up vote 7 down vote accepted

I've submitted a bug report to Oracle, see bugs.sun.com/bugdatabase/view_bug.do?bug_id=7077696

They've marked the priority as low, which makes me think that they don't quite understand the magnitude of the problem, i.e. that FTP is broken on Java/Windows. I forgot to state that explicitly in the bug report. If anyone else feels like it should have a higher priority please add a comment to the Oracle bug report.

I just noticed that you can also 'vote' for the bug, so please give it a vote if you agree it's significant.

link|improve this answer
workaround: stackoverflow.com/questions/10473518/… – MacGyver May 6 at 19:34
feedback

This problem can be demonstrated without JDK7, it's the firewall in Windows 7 blocking the ftp protocol when the application is using IPv6-mapped IPv4 addresses. See http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7077696 for more details and workarounds.

link|improve this answer
feedback

The same bug was reported here with a test case: Java 7 Socket Exception Bug forum. Its an issue with Java 7

link|improve this answer
feedback

Blogged about the issue here: http://podzemski.com/2011/09/12/java-7-prevents-ftp-transfers-on-windows-when-firewall-is-on/

Maybe it'll cause some additional awareness of the problem.

link|improve this answer
Thanks. By the way, active transfers (i.e. PORT command) are also affected. – HansA Sep 13 '11 at 4:14
Thanks for the heads up HansA, i'll change the blogpost. – Tommie Sep 16 '11 at 11:10
feedback

Another workaround is to start the JVM with:

-Djava.net.preferIPv4Stack=true
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.