Patch Uploaded: #14803
MrJul has uploaded a patch.Description:Another NullReferenceException fix when an object is already disposed and a session error occurs at the same time (race condition). Maybe _isDisposed should be...
View ArticleNew Post: Secondary login
Is it really necessary to provide code? The problem seems pretty clear to me: If you run a command that itself will generate a password request, how would one handle that? For instance, you use...
View ArticleNew Post: Secondary login
For SSH use portforwarding and open a New SshClient to the forwarded port. For everything else (e.g. sudo) use expect und write the password to the stream. Since you dont want to show some code i cant...
View ArticleCreated Unassigned: SCPClient Destination Folder [1638]
Afternoon.If I use a folder like /root/f1/f2, the SCPClient works great.If I use something like /root/folder\\ one/folder\\ two, it tells me the directory doesn't exist. In linux using something like :...
View ArticleCommented Unassigned: SCPClient Destination Folder [1638]
Afternoon.If I use a folder like /root/f1/f2, the SCPClient works great.If I use something like /root/folder\\ one/folder\\ two, it tells me the directory doesn't exist. In linux using something like :...
View ArticleCommented Unassigned: SCPClient Destination Folder [1638]
Afternoon.If I use a folder like /root/f1/f2, the SCPClient works great.If I use something like /root/folder\\ one/folder\\ two, it tells me the directory doesn't exist. In linux using something like :...
View ArticleNew Post: Secondary login
OK thanks for the info. One example where this is a problem is when I run Perforce commands remotely. If the user's ticket doesn't exist or has expired, then it will ask for a password. It can happen...
View ArticleNew Post: SCPClient Destination Folder
Does anyone know how to use this API to copy files to a destination folder with blanks in the folder? It's telling me the directory doesn't exist. Works fine it the directory doesn't have blanks. In...
View ArticleNew Post: SCPClient Destination Folder
Put an '@' at the front of the string, e.g:string bla = @"\\\\\\\\"; If you want to know why and what it means: http://www.dotnetperls.com/string-literal
View ArticleCommented Unassigned: SCPClient Destination Folder [1638]
Afternoon.If I use a folder like /root/f1/f2, the SCPClient works great.If I use something like /root/folder\\ one/folder\\ two, it tells me the directory doesn't exist. In linux using something like :...
View ArticleCommented Issue: Remote File exists not working [1574]
I've tried to use sftp.Exists(String) do not work for files. Already tested for file and for directory. Directory work well, but files are not recognized.Comments: ** Comment from web user: egenesis **...
View ArticleNew Post: SCPClient Destination Folder
Thanks for the answer, but I had also tried that with no luck. I worked around this by creating an Upload directory, scp'ing it to that location, and then doing a MV of the file into the correct...
View ArticleCommented Unassigned: SCPClient Destination Folder [1638]
Afternoon.If I use a folder like /root/f1/f2, the SCPClient works great.If I use something like /root/folder\\ one/folder\\ two, it tells me the directory doesn't exist. In linux using something like :...
View ArticleNew Post: SCPClient Destination Folder
in linuxmkdir " Space Folder " cd " Space Folder "/ in c# string MKDIR = @"mkdir "" Space Folder "" "; or string MKDIR = "mkdir \" Space Folder \" "; string CD= @"cd "" Space Folder ""/ "; or string...
View ArticleReviewed: 2013.4.7 (Jul 12, 2013)
Rated 5 Stars (out of 5) - Very intuitive API, SFTP works flawlessly, and very helpful documentation. Thank you!
View ArticleNew Post: An established connection was aborted by the software in your host...
Hi, I'm using the simple code below to upload a small file. Every time the file has uploaded and I disconnect I then get a SocketException error (An established connection was aborted by the software...
View ArticleNew Post: SshNet: Connect to port 23 (telnet)
Hi Everyone, I am trying to make a simple program written in visual basic 2010. Its purpose is to be able to issue unix commands and display the result. The code below works when I connect to Port 22,...
View ArticleNew Post: SshNet: Connect to port 23 (telnet)
This is called SSH.NET not TELNET.NET. Should be obvious why it does not work :P
View Article