New Post: Dynamic PortForward Problem
just for your info, using 24900 build it fix my dynamic portforward not responding problem. thank you
View ArticleCommented Issue: Thread-safe event handling [1551]
Consider rewriting this: if (this.ErrorOccurred != null){ this.ErrorOccurred(this, e);}Into:var handler = ErrorOccurred;if (handler != null){ handler(this, e);}Comments: ** Comment from web user:...
View ArticleCommented Issue: Consider killing off the TaskFactory [1552]
We are moving to NServiceBus for some of our parts of the software, and suddenly the library stopped working (connection timeouts). So after a few hours of double checking everything, I decided to...
View ArticleNew Post: Dynamic PortForward Problem
Thanks for letting me know. I think its probably has to do with how I start threads, so I guess it fixed another problem. Thanks, Oleg
View ArticleNew Post: "An established connection was aborted by the software in your host...
hello! I am trying to execute some commands on a Juniper SSG 350M (with default settings, but ssh enabled on all interfaces) Firewall, after establishing a ssh connection... but I always get the same...
View ArticleNew Post: 3.5 Source Code for release 2013.1.8?
Hey everyone, I imported and compiled the Renci 3.5 project into VS , built it and added the reference to my project, but lots of classes are not available. For example SshClient and SftpClient do not...
View ArticleNew Post: 3.5 Source Code for release 2013.1.8?
Hi, Yes, .NET 3.5 source code is generated of .NET40 with some differentce for 3.5 located in .NET 3.5 project. Basically you will need to merge .NET40 and .NET35 versions. Hope it helps. Thanks, Oleg
View ArticleNew Post: Connecting to OpenSSH server
It is working now. I don't see the difference so maybe it was something else I was doing wrong... public Boolean VerifyConnetion() { var passwordAuthMethod = new PasswordAuthenticationMethod(username,...
View ArticleCommented Issue: Consider killing off the TaskFactory [1552]
We are moving to NServiceBus for some of our parts of the software, and suddenly the library stopped working (connection timeouts). So after a few hours of double checking everything, I decided to...
View ArticleReleased: 2013.4.7 (Apr 06, 2013)
New FeaturesAdd IPAddress as parameter to ForwardedPortRemoteBreaking changesRemove not SCP feature of creating directory structure for uploaded files or directoriesFixesFix the way SCP handling root...
View ArticleUpdated Release: 2013.4.7 (Apr 06, 2013)
New FeaturesAdd IPAddress as parameter to ForwardedPortRemoteBreaking changesRemove not SCP feature of creating directory structure for uploaded files or directoriesFixesFix the way SCP handling root...
View ArticleCommented Issue: Consider killing off the TaskFactory [1552]
We are moving to NServiceBus for some of our parts of the software, and suddenly the library stopped working (connection timeouts). So after a few hours of double checking everything, I decided to...
View ArticleClosed Issue: Rosh [1546]
When i use the Rosh command any other commands taht i pass are not working.!any help greatly appreciated. Dim connInfo As New Renci.SshNet.PasswordConnectionInfo(servTxt.Text, Val(prtTxt.Text),...
View ArticleNew Post: "An established connection was aborted by the software in your host...
I think that device does not allow execution of "get system version" command. Its probably valid but only when executed using Shell. Some SSH implementations restrict what can be done or executed and...
View ArticleCommented Issue: Seeing a protected memory exception [1549]
I am seeing a protected memory exception when connecting to device.```Attempted to read or write protected memory. This is often an indication that other memory is corrupt. at...
View ArticleNew Post: 'No such file' exception when calling DownloadFile (SftpClient)...
Hi, Can you post a code example of what you doing so I could try to recreate it here? Thanks, Oleg
View ArticleCommented Issue: Consider killing off the TaskFactory [1552]
We are moving to NServiceBus for some of our parts of the software, and suddenly the library stopped working (connection timeouts). So after a few hours of double checking everything, I decided to...
View ArticleNew Post: SFTP: Uploading Files to the FTP Server has Inconsistent Behavior
Hi Oleg, Yes, i am uploading to the FTP Server through SFTP. Thanks, Navin
View ArticleNew Post: "An established connection was aborted by the software in your host...
Thanks for the reply, well, I found a solution... the command itself was not the problem, but using the RunCommand() method was so. Instead of the RunCommand() method I used the shellstream example...
View Article