New Post: Interactive Authentication
yes i will see. It is not so easy to get just a patch with this changes... Im not so sure if it is good for the upstream, because it is a quick and dirty solution...
View ArticleNew Post: Problem with cd command in ssh
Dear all, Thanks for the awesome discussion here. I found that it has lot of useful information. I have one problem is that cd command is not working. For example, if I type cd /home/ it does not gives...
View ArticleNew Post: Problem with cd command in ssh
Dear Da_rinkes Thank you for your reply. Yes, cd has no output. But, once I run it I should go the other folder. Problem is that after I run cd /home/ for example, I run pwd command and it gives me...
View ArticleNew Post: Problem with cd command in ssh
That's how SshCommand works. Every command is executed in a new shell. client.RunCommand("pwd") => $HOME client.RunCommand("cd /tmp") client.RunCommand("pwd") => $HOME client.RunCommand("cd /tmp...
View ArticleNew Post: Problem with cd command in ssh
Dear Da_rinkes Thanks for your great help and feedback. Now, I got the idea. It means whenever I will run any command, I need always to go back to the default directory. Thanks again. BR//
View ArticleNew Post: Problem with cd command in ssh
Every time you run a command with RunCommand you get a default environment. So just running a cd command is useless. Try this as command "cd /home; pwd" You can seperate commands with a ";". This is...
View ArticleNew Post: Problem with cd command in ssh
Dear bugalexx Thank you for your feedback. Is there way that I would run the command and I will not get back to the default enviroment. Thanks in advance. BR//
View ArticleNew Post: Problem with cd command in ssh
Only if you use the CreateShell or CreateShellStream methods. But then you maybe have to parse the terminal protocol.
View ArticleNew Post: Commands are redisplayed before results are shown
My goal is this. We want to create a SSH Web Client that can run on an locked down intranet site. This web client will be used remotely by system engineers when they cannot be physically in the office....
View ArticleNew Post: Commands are redisplayed before results are shown
Thanks, now I understand I think. What about using a finished solution like Shell in a Box?https://code.google.com/p/shellinabox/ Else I think you have to handle the Terminal Protocol, which is not...
View ArticleNew Post: Commands are redisplayed before results are shown
I would prefer not dealing with Linux (considering we are a Windows Server shop). I'll just keep going with this project and eventually get it sorted.
View ArticleNew Post: Commands are redisplayed before results are shown
We use Windows Servers (2008 and 2012)
View ArticleNew Post: ScpClient false error detected during upload
Hi, When I upload a file with ScpClient, the Upload() method calls the method CheckReturnCode() to check if there is no error. My problem is that there is a message catch by CheckReturnCode() but it is...
View ArticleNew Post: Commands are redisplayed before results are shown
Since you develope a WebClient: What about handling the Stream Data via Javascript? From shell in a box:https://code.google.com/p/shellinabox/source/browse/shellinabox/vt100.js...
View ArticleNew Post: Accessing psql after login to a server
I was able to successfully connect to a server using SSH in C#. the server has Postgres client listed as one of its applications. The problem is, if I enter the command "psql" in putty, it would take...
View ArticleNew Post: Accessing psql after login to a server
Did you used the property SshCommand.Result? This will block till the execution is finish. If you run a command that expects input you have to use SshCommand.OutputStream to get the data. Unfortunally...
View ArticleNew Post: ScpClient false error detected during upload
What version of SSH.NET are you using ?
View ArticleNew Post: Last Modified/Creation Date
Hi, Is there any way to retain the last modification and/or creation time on a transferred file via sftp from this library? If not, will this be something that could be added to a future release? Any...
View ArticleNew Post: Last Modified/Creation Date
You can propose a patch for this feature (if it is missing). I'm sure it can be integrated to a future release.
View Article