Unable to login using sshview
Status: Beta
Brought to you by:
depsypher
I am unable to establish a connection to a remote
server using sshview and authentication method
"keybord-interactive". After entering the password in
the password dialog nothing more happens. The same
procedure works fine using SSHTerm (on which sshview i
based I believe).
Logged In: YES
user_id=156489
What you're probably noticing is that the screen fails to
repaint after logging in. The workaround at the moment is
to resize the windows slightly and then everything should
work fine from then on. I'll keep this bug filed here until
I have a chance to fix it... thanks for reporting this.
If the workaround doesn't help and there is some real bug
with logging in itself let me know and I'll make sure that
gets filed as a bug as well.
Logged In: NO
It's a real bug, I have the same problem, repainting
doesn't help. I can use putty fine but sshview just sits at
the connecting stage.
Logged In: NO
No problem for me, Great plugin !
But completion using tab in the shell (like cd C ->TAB ...)
freese the keyboard input ... you have to make a refresh to
be able to input something with the keyboard ...
I use Eclipse 3.1.2 with sun j2re1.5
I think this plugin was missing in Eclipse ... great work!
Francois
Logged In: NO
I'm having the same problems - it's stuck at "Connecting..."
Logged In: NO
Has there been any progress on this bug, to put a little more light on this I can connect to ssh via putty or another ssh client but when connecting with sshview the connection isn't fully made.
The server spits out
fatal: Timeout before authentication from xxx.xxx.xxx.xxx
Logged In: NO
I've semi fixed this.
A null pointer exception was being thrown in KBIRequestHandlerDialog because prompts was null. This can be fixed quickly by putting the following at the beginning of the showPrompts(String name, String instruction, KBIPrompt[] prompts) method.
if(prompts==null) return;
Though there must be a reason why this is being called with a null prompt I don't have the time at the moment to work out why.
Adding this fixed it pour moi.