New Post: visual basic.net sftp downloading file with progress bar
hi please help me i need a program in visual basic 2010 express to sftp download a file from server but with a progress bar because there is not any example here in vb.net for this. many thanks in advance
View ArticleNew Post: client.RunCommand() is not working
static void Main(string[] args) { PrivateKeyFile key = new PrivateKeyFile("private"); using (var client = new SshClient("10.96.15.6", "admin", key)) { client.Connect(); client.RunCommand("xcommand...
View ArticleNew Post: Downloading and returning a non blocking stream of data using SSH.Net
I am using the ssh.net library for performing SFTP operations to work with large data files (>=500MB) I am having an issue with how to return the data in a non-blocking way. The...
View ArticleNew Post: Windows phone 8 port farwarding
Hi I need to consume via c# a REST server via PortForwarding I would like to use SSH.net this wayusing (var client = new SshClient("server", "username", "password")) { client.ConnectionInfo.Timeout =...
View ArticleNew Post: Cancel a SFTP upload or download
hi Oleg can you please convert this code to visual basic.net
View ArticleNew Post: Simple input/output to a connected server
Hello all. I have a server that, on connection with a private key, runs a custom command (ie no shell, nor any pseudo-TTY allocation is required) that expects UTF-8 encoded text, multiple lines until a...
View ArticleNew Post: What are the list callbacks?
I'm trying to implement a function similar to the ListDirectory function for SftpClient, but that is capable of listing the contents of sub-directories as well. I noticed that the signature for...
View ArticleNew Post: How to get response stream from server
Hello All, I have server application running on linux and using SSH.Net as client. Server application is listening on localhost and port 9001. After providing credential I am able to connect server...
View ArticleNew Post: SshOperationTimeoutException trying to start a service on remote...
Ok, so I may have some more insight to this issue (finally), if you have a moment to confirm or deny what I am seeing/assuming: Most of my commands run a command and exit without spawning any child...
View ArticleNew Post: Not executing file manipulation commands using ssh.net library
My code uses ssh.net library to connect to windows server. It is working well when I access running exe, start and stop those exe but it gives me error "AllowDesktopAccess failed. Unable to execute...
View ArticleNew Post: ksh not found when executing command using the sshCommand.Execute
Hello, I'll appreciate your help with the following issue. i am trying to execute command using the following syntax : SshCommand command = cSSH.CreateCommand("isql -Uun -Ppass...
View ArticleNew Post: Causes of "Server response does not contain SSH protocol...
Hello, Does anyone ever ran into the "Server response does not contain SSH protocol identification" error? What can cause that? I'm using the library in a website to transfer file to another server...
View ArticleNew Post: changing users command
hello, I'll really appreciate some help in the following issue: i am trying to run some isql scripts using SSH. how can I change the user to be superuser? (comand: su -) ?
View ArticleNew Post: Documentation Empty
Hi, i've downloaded the SshNet.Help.chm but when i open... no item have text. I see the documentation structure, but no text. Any known issue ? I'm using windows 8.
View ArticleNew Post: Documentation Empty
forget it... i've missed the Unblock-file on powershell. Thanks ;)
View ArticleNew Post: Identifying that a command has finished (ShellStream)
21region wrote: We have solved our local problem (as far as I understand, it is not a general solution) by adding into source code overloaded version of RunCommand(, Action<>...
View ArticleNew Post: Stability while in beta; "stable" timeframe
Any further progress on this? Its tempting to create a fork on github as there would be much more involvement and community contributions. I have hit a bug in latest stable that has been fixed in beta2...
View ArticleNew Post: How access SonicWALL
I'm try access an TZ 205 like this: New-SshSession -ComputerName 192.168.168.168 -port 8022 -Username admin ... I receive this: Successfully connected to 192.168.168.168 So I try this:...
View ArticleNew Post: Multipart / Segmented SFTP Downloads
Hello, I'm trying to download multiple files at the same time from the server, or download a single file using multiple connections (segmented). When i create and connect another instance of...
View ArticleNew Post: private key authentication help
Attempting to authenticate via username and privatekey only but all examples i can find seem to include in the authenticationMethod[] both a PasswordAuthenticationMethod (which i dont want to use and...
View Article