| View previous topic :: View next topic |
| Author |
Message |
Bob McConnell Posted via mailing list.
|
Posted: Wed Sep 07, 2011 8:40 pm Post subject: FTP fails with NB 7.0.1 and Java 7 |
|
|
From: Jay-wo
| Quote: | | Quote: | Well, I don't want to speak for the engineers, but is there some
particular reason you need to use JDK 7? JDK 6 u 26 is nice and
|
| stable.
| Quote: |
True. The problem is that you don't know what JDK is installed
on users' machines so the only alternative is to bundle the JDK
that you know works. I don't like that option because it makes
my software footprint larger than I want it to be.
|
User machines should not need the full JDK, only a JRE. I believe there
are ways to check that to insure they are running a compatible version
and issue a warning or error if not.
Bob McConnell |
|
| Back to top |
|
 |
Jay-wo
Joined: 04 Sep 2011 Posts: 5 Location: Fullerton, California
|
Posted: Wed Sep 07, 2011 9:40 pm Post subject: |
|
|
Bob. You're right. I meant to say JRE. The issue still applies though, and the customer for my software wants it "to just work." Requiring the user to download software so that my software works will result in them not using my software. Sucks to be me.  |
|
| Back to top |
|
 |
Tomas Mysik Posted via mailing list.
|
Posted: Thu Sep 08, 2011 5:34 am Post subject: FTP fails with NB 7.0.1 and Java 7 |
|
|
Hi,
Dne |
|
| Back to top |
|
 |
JeffRubinoff
Joined: 03 Dec 2008 Posts: 70 Location: Prague
|
Posted: Thu Sep 08, 2011 2:10 pm Post subject: |
|
|
Tomas' reply got eaten on the forum because of Czech diacriticals in the timestamp. Here is what he wrote:
|
|
| Back to top |
|
 |
khishigbaatar
Joined: 13 Sep 2011 Posts: 1
|
Posted: Tue Sep 13, 2011 12:39 pm Post subject: SOLVED! |
|
|
It's all about windows firewall. When you disable your windows firewall. NB ftp connection goes well.
Fix for windows firewall for passive ftp connection:
1. Open cmd.exe as Administrator
2. Run following command:
| Code: | | netsh advfirewall firewall add rule name=”FTP Service” action=allow service=ftpsvc protocol=TCP dir=in |
And disable stateful ftp filtering:
| Code: | | netsh advfirewall set global StatefulFTP disable |
|
|
| Back to top |
|
 |
yetikov
Joined: 06 Sep 2011 Posts: 2
|
Posted: Tue Sep 20, 2011 3:39 pm Post subject: |
|
|
Thank you, khishigbaatar, for the code supplied.
Even though your first command failed because of invalid arguments. But I just ran cmd.exe with Administrator rights. And the following code was enough to solve the problem:
| Code: | | netsh advfirewall set global StatefulFTP disable |
|
|
| Back to top |
|
 |
sindy12
Joined: 13 Apr 2012 Posts: 1
|
Posted: Fri Apr 13, 2012 1:47 pm Post subject: |
|
|
Hi,
thank you, exactly what I'm looking for! |
|
| Back to top |
|
 |
mikenytola
Joined: 15 Oct 2010 Posts: 2
|
Posted: Sat Apr 14, 2012 9:02 pm Post subject: |
|
|
It's still missing a step.
If you still cannot connect, make sure that the FTP is set to Passive Mode. |
|
| Back to top |
|
 |
|