[jira] Created: (DIRMINA-788) RequestResponseFilter - Javadoc and Examples

2010-06-03 Thread Alan Amir (JIRA)
RequestResponseFilter - Javadoc and Examples Key: DIRMINA-788 URL: https://issues.apache.org/jira/browse/DIRMINA-788 Project: MINA Issue Type: Wish Components: Web Site / Documentation

Re: Server channel question

2010-06-03 Thread Doron Fediuck
Job well done! On Thursday 03 June 2010 14:22:28 Guillaume Nodet wrote: > Done, thx! > See https://cwiki.apache.org/SSHD/tips.html > > On Thu, Jun 3, 2010 at 12:01, Doron Fediuck wrote: > > On Thursday 03 June 2010 12:40:51 Guillaume Nodet wrote: > >> Right, but look at http://mina.apache.org/ss

Re: Server channel question

2010-06-03 Thread Guillaume Nodet
Done, thx! See https://cwiki.apache.org/SSHD/tips.html On Thu, Jun 3, 2010 at 12:01, Doron Fediuck wrote: > On Thursday 03 June 2010 12:40:51 Guillaume Nodet wrote: >> Right, but look at http://mina.apache.org/sshd/ >> The second sentence of the web site is: >>     "SSHD does not really aim at be

Re: Server channel question

2010-06-03 Thread Doron Fediuck
On Thursday 03 June 2010 12:40:51 Guillaume Nodet wrote: > Right, but look at http://mina.apache.org/sshd/ > The second sentence of the web site is: > "SSHD does not really aim at being a replacement for the SSH > client or SSH server from Unix operating systems, but rather provides > support f

Re: Server channel question

2010-06-03 Thread Guillaume Nodet
Right, but look at http://mina.apache.org/sshd/ The second sentence of the web site is: "SSHD does not really aim at being a replacement for the SSH client or SSH server from Unix operating systems, but rather provides support for Java based applications requiring SSH support." That said, I ag

Re: Server channel question

2010-06-03 Thread Doron Fediuck
On Thursday 03 June 2010 12:14:01 Guillaume Nodet wrote: > Not sure to completely understand your problem. > When the client execute a remote command, you need the server to be > able to understand and actually run the command. > If you're sending "ls -l" you need something on the server to handle

Re: Server channel question

2010-06-03 Thread Guillaume Nodet
Not sure to completely understand your problem. When the client execute a remote command, you need the server to be able to understand and actually run the command. If you're sending "ls -l" you need something on the server to handle that. There is only a single CommandFactory implementation provid

Server channel question

2010-06-03 Thread Doron Fediuck
Hi, I tried setting up a server using your 5-minute guide. This server has- sshd.setCommandFactory(new ScpCommandFactory()); The problem is, that my client code runs: channel = session.createExecChannel("ls -l"); And this is not supported by ScpCommandFactory (took me a lot of debug to get the er