sharpssh Questions

3

private void OVConnection() { try { //Create a new JSch instance JSch jsch = new JSch(); this.Dispatcher.BeginInvoke(new Action<Status>(DisplayStatus), Status.Connecting); //Create a ne...
Finished asked 19/8, 2014 at 11:28

2

I have to download some files from a SFTP location. I am using the SharpSsh libraries but I am unable to connect. Below are my SFTP details : <add key="FTPHost" value="xyz.csod.co...
Amorous asked 9/4, 2015 at 6:24

4

Solved

I have a Powershell script that is going to be run through an automation tool against multiple servers. It works fine on Windows machines, as the remote calls use the tool's service account without...
Sculpture asked 12/10, 2010 at 18:26

5

I am trying to connect to ftp via SharpSSH as below: Sftp Connection = new Sftp(ftpAddress, FTPLogin, FTPPasword); Connection.Connect(); Which results in JSchException: System.Net.Sockets.Socke...
Solanum asked 18/12, 2012 at 15:8

4

How to delete a file from a SFTP server using Tamir Gal's SharpSSH? I have been able to accomplish other functionality but deletion.
Tbilisi asked 2/4, 2010 at 2:14

1

Solved

I use SharpSSH to connect to a stfp-server. This for I need to add a privatekey-file like this: sftp.AddIdentityFile(KeyFilePath); But this throws an exception: invaid privatekey: C:\KeyFile\p...
Annettannetta asked 19/11, 2012 at 7:42

1

Solved

I'm currently facing a really strange problem in one of my projects. I've implemented Tamir Gal's Sharp SSH Library in my code to upload some files per FTP. When I run the code in Debug Mode every...
Touristy asked 2/10, 2012 at 8:38

1

Solved

I'm looking at setting up public key client and server authentication for SFTP using the JSch library (or actually the sharpSSH C# port of it). Unfortunately I cannot find any documentation for the...
Syd asked 13/11, 2011 at 21:31

1

Solved

I'm writing an application that allows me to up- and download files from a remote server. I'm using sftp as my transfer protocol and i need to list all files and directory's into a listview. I'm us...
Correia asked 21/6, 2010 at 20:15

1

Solved

I'm trying to use SharpSSH to get a file from a remote SFTP server, and I want to read it out as a stream. I found: class Sftp, which has a Get method that saves it to a local file -- close clas...
Flyblow asked 21/7, 2010 at 0:54
1

© 2022 - 2024 — McMap. All rights reserved.