Patch Applied: #13574
olegkap has applied patch #13574.Comment:Hey,Thanks for pointing it out, I think it was part of the patch of fix that someone provided me with and I overlooked it.I just applied it.Thanks,Oleg
View ArticleSource code checked in, #22418
Ensure Queue.Dequeue operation is called only when data still availalbe in queue
View ArticleNew Post: "Queue Empty" after stream.Expect
Hi, The Queue is an internal way for me to handle data but you should never get to this situation.I just added could more checks to ensure this does not happen.Please get latest source code and see if...
View ArticleNew Post: Weird problem on SSH Port Forwarding
Hi, I think the example you provided will not compile. I just tried this code:using (SshClient sshClient = new SshClient(connectionInfo)) { sshClient.Connect();var fowardPort = new...
View ArticleReleased: 2013.1.8 (Jan 08, 2013)
This release provides mainly more fixes from 2012.12.21 release.New FeaturesAdd ability to specify terminal modes for Shell terminal Add BeginExpect methods to ShellStreamFixesAdd locking in...
View ArticleUpdated Release: 2013.1.8 (Jan 08, 2013)
This release provides mainly more fixes from 2012.12.21 release.New FeaturesAdd ability to specify terminal modes for Shell terminalAdd BeginExpect methods to ShellStreamFixesAdd locking in ShellStream...
View ArticleUpdated Wiki: Documentation
Notice: This wiki is a work in progress and may contain dead-links or inaccurate information. Do not file any issues until this notice is removed. How to enhance debugging experience with...
View ArticleUpdated Wiki: Documentation
Notice: This wiki is a work in progress and may contain dead-links or inaccurate information. Do not file any issues until this notice is removed. How to enhance debugging experience with...
View ArticleUpdated Wiki: Documentation
Notice: This wiki is a work in progress and may contain dead-links or inaccurate information. Do not file any issues until this notice is removed. How to enhance debugging experience with...
View ArticleNew Post: SCP copy to a specific folder
Hi all - I may be encountering the same issue with directories, otherwise its an untrapped usage error.In ScpClient.NET.cs:private void InternalUpload(ChannelSession channel, PipeStream input,...
View ArticleNew Post: SCP copy to a specific folder
Hi, I just did a small test but I managed to upload full directory structure as it is and without making any code changes.May be server that I am using is ok with that so will have to dig into what the...
View ArticleNew Post: Weird problem on SSH Port Forwarding
Thanks for the reply,I made typo when I edit the format of the first post, as you point out, The code I am using is about the same as yours sshClient = new SshClient("10.112.125.42", myUsername,...
View ArticleNew Post: SSH.NET Library Supports Standard FTP
Well, it would be interesting, if FTP (not secure) will be supported. I can take a look into the code and make derived from sftp an ftp class. Just dont know when it can be. I'll post the code... maybe...
View ArticleNew Post: Weird problem on SSH Port Forwarding
Hi, Can you try this? sshClient.Connect();var fowardPort = new ForwardedPortLocal("127.0.0.1", 10000, "www.cnn.com", 80); sshClient.AddForwardedPort(fowardPort);var fowardPort2 = new...
View ArticleNew Post: A Little Help With Connection Settings
Just found your project. Looks pretty good. Having a small issue getting going.Used the example code as a base such that I have this:using (var client = new SshClient("<host>", "<user>",...
View ArticleNew Post: A Little Help With Connection Settings
Hi, Unfortunately I cannot provide much help with that since the issue you described is server specific.When command is executed it runs in its own environment, which probably set up differently from...
View Article