FTP upload does not work with Java 7 on Windows 7 in NetBeans IDE 7.2.1.
Solution
Configure an inbound firewall rule to allow inbound FTP connections to only the ports on which FTP is listening (source)
-
Open an Administrator command-prompt. Click Start, click All Programs, click Accessories, right-click Command Prompt, and then click Run as Administrator.
-
Run the following command:
netsh advfirewall firewall add rule name=”FTP Service” action=allow service=ftpsvc protocol=TCP dir=in
-
Finally, disable stateful FTP filtering so that the firewall does not block any FTP traffic.
netsh advfirewall set global StatefulFTP disable
Komentáre