Re: Extending sshd to support streaming files from a file repository

2015-12-18 Thread rockyfm
; > > If you don't want your client to directly use the custom > > FileSystemProvider, and force it to use SFTP instead, you can achieve that > > by setting your custom FileSystemFactory on the ssh server and that should > > be enough. > > > > > &g

Extending sshd to support streaming files from a file repository

2015-12-17 Thread rockyfm
We are looking to extend sshd 1.0 to support a file system that does not exist natively on the server running the sshd process. File operations like "ls" would query a web service to return a structure that represents the access the user has to files and directories on the remote file repository. S

Re: Cannot start sshd 1.0 server

2015-12-17 Thread rockyfm
top a System.exit. This is what I would expect at least. > > You could try putting a "Thread.wait()" after sshd.start(), so that the > main thread doesn't exit and see if the rest still works as you want it. > > On 17/12/15 01:51, rockyfm wrote: > > > I

Cannot start sshd 1.0 server

2015-12-16 Thread rockyfm
I am using Apache Mina sshd-core-1.0.0 to start an SFTP daemon. The program however exits after the sshd.start(). There are no errors. However if I use sshd-core-0.0.14, the server starts just fine and I can initiate an sftp session. Am I missing something with 1.0.0 ? Code snippet with 1.0.0 (doe