Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Java NullPointerException thrown when SYST returns 550? #6218

Closed
cyberduck opened this issue Sep 12, 2011 · 1 comment
Closed

Java NullPointerException thrown when SYST returns 550? #6218

cyberduck opened this issue Sep 12, 2011 · 1 comment
Assignees
Labels
bug fixed ftp FTP Protocol Implementation
Milestone

Comments

@cyberduck
Copy link
Collaborator

Irbdavid created the issue

Cyberduck doesn't connect to an FTP server I have used semi-regularly before. Other programmes (Firefox, Finder) do fine.

Double click the bookmark and growl tells me the connection is opened, but no window showing files & folders on the remote system opens, and Cyberduck gives no other information.

Site in question is ftp://naif.jpl.nasa.gov/pub/ , but same problem seems to occur with others.

Cyberducks log:

220-
220-  ======================================================================
220-  |                     Jet Propulsion Laboratory                      |
220-  |                                                                    |
220-  |                  * * *    W A R N I N G   * * *                    |
220-  |                                                                    |
220-  |                          Property of the                           |
220-  |                      UNITED STATES GOVERNMENT                      |
220-  |                                                                    |
220-  |    This computer is funded by the United States Government and     |
220-  | operated by the California Institute of Technology in support of   |
220-  | ongoing U.S. Government programs and activities.  If you are not   |
220-  | authorized to access this system, disconnect now.  Users of this   |
220-  | system have no expectation of privacy. By continuing, you consent  |
220-  |     to your keystrokes and data content being monitored.           |
220-  ======================================================================
220-
220 
USER anonymous
331 Please specify the password.
PASS ********
230-
230-                           Jet Propulsion Laboratory                 
230-                        * * *    W A R N I N G   * * *                    
230-                   Property of the UNITED STATES GOVERNMENT
230-        This computer is funded by the United States Government and    
230-      operated by the California Institute of Technology in support of
230-      ongoing U.S. Government programs and activities.  If you are not 
230-      authorized to access this system, disconnect now.  Users of this
230-      system have no expectation of privacy. By continuing, you consent
230-            to your keystrokes and data content being monitored.
230-
230 Login successful.
FEAT
550 Permission denied.
NOOP
200 NOOP ok.
SYST
550 Permission denied.

That's all of it.
Console.app's log, presumably related? :

12/09/2011 9:33:09AM	[0x0-0x183d83c].ch.sudo.cyberduck[40980]	2011-09-12 09:33:09,515 [background-14] ERROR ch.cyberduck.ui.AbstractController - Exception running background task:null
12/09/2011 9:33:09AM	[0x0-0x183d83c].ch.sudo.cyberduck[40980]	java.lang.NullPointerException
12/09/2011 9:33:09AM	[0x0-0x183d83c].ch.sudo.cyberduck[40980]		at ch.cyberduck.core.ftp.FTPSession.getFileParser(FTPSession.java:131)
12/09/2011 9:33:09AM	[0x0-0x183d83c].ch.sudo.cyberduck[40980]		at ch.cyberduck.core.ftp.FTPPath.list(FTPPath.java:170)
12/09/2011 9:33:09AM	[0x0-0x183d83c].ch.sudo.cyberduck[40980]		at ch.cyberduck.core.Path.list(Path.java:471)
12/09/2011 9:33:09AM	[0x0-0x183d83c].ch.sudo.cyberduck[40980]		at ch.cyberduck.core.AbstractPath.children(AbstractPath.java:146)
12/09/2011 9:33:09AM	[0x0-0x183d83c].ch.sudo.cyberduck[40980]		at ch.cyberduck.core.AbstractPath.children(AbstractPath.java:132)
12/09/2011 9:33:09AM	[0x0-0x183d83c].ch.sudo.cyberduck[40980]		at ch.cyberduck.core.AbstractPath.children(AbstractPath.java:119)
12/09/2011 9:33:09AM	[0x0-0x183d83c].ch.sudo.cyberduck[40980]		at ch.cyberduck.core.Session.mount(Session.java:280)
12/09/2011 9:33:09AM	[0x0-0x183d83c].ch.sudo.cyberduck[40980]		at ch.cyberduck.core.Session.mount(Session.java:262)
12/09/2011 9:33:09AM	[0x0-0x183d83c].ch.sudo.cyberduck[40980]		at ch.cyberduck.core.ftp.FTPSession.mount(FTPSession.java:78)
12/09/2011 9:33:09AM	[0x0-0x183d83c].ch.sudo.cyberduck[40980]		at ch.cyberduck.ui.cocoa.BrowserController$31$1.run(BrowserController.java:3735)
12/09/2011 9:33:09AM	[0x0-0x183d83c].ch.sudo.cyberduck[40980]		at ch.cyberduck.core.threading.AbstractBackgroundAction.call(AbstractBackgroundAction.java:94)
12/09/2011 9:33:09AM	[0x0-0x183d83c].ch.sudo.cyberduck[40980]		at ch.cyberduck.ui.AbstractController$1.call(AbstractController.java:88)
12/09/2011 9:33:09AM	[0x0-0x183d83c].ch.sudo.cyberduck[40980]		at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
12/09/2011 9:33:09AM	[0x0-0x183d83c].ch.sudo.cyberduck[40980]		at java.util.concurrent.FutureTask.run(FutureTask.java:138)
12/09/2011 9:33:09AM	[0x0-0x183d83c].ch.sudo.cyberduck[40980]		at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
12/09/2011 9:33:09AM	[0x0-0x183d83c].ch.sudo.cyberduck[40980]		at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
12/09/2011 9:33:09AM	[0x0-0x183d83c].ch.sudo.cyberduck[40980]		at java.lang.Thread.run(Thread.java:680)
@cyberduck
Copy link
Collaborator Author

@dkocher commented

In 7c4d24d.

@iterate-ch iterate-ch locked as resolved and limited conversation to collaborators Nov 26, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug fixed ftp FTP Protocol Implementation
Projects
None yet
Development

No branches or pull requests

2 participants