New Post: Testing can destroy your home
Yea, I can look into putting it into different folder probably. Well, originally I was not planning for anybody to use those test except for developers So I guess next time I am looking at test I will...
View ArticleNew Post: Small File Upload Problem
ok, Thanks, Yea let me know if it does and where to get it, I could install it then on one of VMs here. Thanks, Oleg
View ArticleNew Post: Testing can destroy your home
I have created an issue. Thanks Oleg and best regards!
View ArticleNew Post: 3.5 Source Code for release 2013.1.8?
Hey Matt, Thanks a lot for pointing this out. Regards, Elson
View ArticleNew Post: Mono Support?
I see Mono support is listed but I am not able to get this code to execute correct via Mono. Here is the code I am running: using (SshClient ssh = new SshClient(host,username,password)) { try {...
View ArticleNew Post: SCP copy to a specific folder
Hi, I have the same problem as journo, where im getting folowing error: "scp: : No such file or directory", but i cant find your latest committed code, 22896, where can i find it? Thanks
View ArticleNew Post: SCP copy to a specific folder
Hi, You simply need to download it from "SOURCE CODE" tab above. Thanks, Oleg
View ArticleNew Post: Mono Support?
Hi, Unfortunatly I wont be able to help you with mono part. I have people who compiled and used it on Mono so may be they will be able to help you with that. Usually "No suitable authentication method...
View ArticleNew Post: OperationTimeout and ConnectionInfo.Timeout don't terminate the...
thanks reawakening the thread and for the updates. i was testing the last commit to see if OperationTimeout works as i predicted. i set: sftp.OperationTimeout = TimeSpan.FromSeconds(1); and used...
View ArticleNew Post: SCP copy to a specific folder
Hi I'm using your latest commit 22965 and i still get af file not found error. The source file and destination directory exists. I've tried: client.Connect(); Stream filestream = new...
View ArticleNew Post: SCP copy to a specific folder
Hi, I think you using this incorrectly. It seems that you trying to upload stream into the folder which is obviously impossible. I would change this line:client.Upload(filestream,...
View ArticleNew Post: OperationTimeout and ConnectionInfo.Timeout don't terminate the...
Hi, I think there is a little misunderstanding about timeout parameter. What it basically means is if there is no response from the server for lets say 30 sec, then throw an exception. But if upload...
View ArticleNew Post: Mono Support?
Thanks for the Response Oleg. Is there a way to capture and display the standard error and standard output of the attempted ssh connection? I'm sure if I can see what the error really is I can craft a...
View ArticleNew Post: Mono Support?
Hi Nathan, Actually the message that you see its something that client displays, its not part of the protocol, to wait for response. Did you try to debug it? Where does it hang? What line? Also, did...
View ArticleNew Post: SCP copy to a specific folder
Hi Oleg, The fix in 22896 works for uploading a file, but doesn't work when uploading a directory:using (var c = new ScpClient("host", "user", "password")) { c.Connect(); var di = new...
View ArticleNew Post: Problem with uploading to Unix
When I try to use SCPClient to copy several big files (1 gb) from windows machine to unix machine, I have problem First target file have same size , but others don't uppload full. They have less size...
View ArticleNew Post: Problem with uploading to Unix
Well connect inside the loop... not really good thing. You should keep connection opened. You can call connect every time, because it will do nothing if connection is opened. for the file size. You...
View ArticleNew Post: ScpClient missing methods
well all this commands can be put into the base class...
View ArticleNew Post: Problem with uploading to Unix
At start I connected from outside a loop. But later I changed as it is now. I hoped that this will be solve the problem. Now I have found problem and have solved it. namespace Renci.SshNet {///...
View ArticleNew Post: Problem with uploading to Unix
Hi, I actually solved this problem already but it didst make it to release version yet. You can also download latest source code where this fix is already available. Thanks, Oleg
View Article