Tagged Questions
SharpSSH is a .NET framework library for connecting to and retrieving files from an SSH/SFTP server.
6
votes
2answers
1k views
Streaming a file from SharpSSH
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
class ...
4
votes
2answers
2k views
Get current user's credentials object in Powershell without prompting
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 ...
3
votes
1answer
460 views
SharpSSH's Scp object can't copy files bigger than 2GB
Whenever I try to copy a file that's bigger than 2GB, I get an array index out of bounds exception in the Get method:
Scp myScp = new Scp("remotehost", "joe", "mypassword");
myScp.OnTransferProgress ...
3
votes
1answer
1k views
Sharpssh directory listing
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 using ...
3
votes
3answers
2k views
How to delete a file from a SFTP server programmingly using SharpSSH?
Anyone knows how to delete a file from a SFTP server using Tamir Gal's SharpSSH? I have been able to accomplish other functionality but deletion. Thanks in advance.
3
votes
2answers
6k views
SSH / SFTP connection issue using Tamir.SharpSsh
This is my code to connect and send a file to a remote SFTP server.
public static void SendDocument(string fileName, string host, string remoteFile, string user, string password)
{ ...
2
votes
2answers
536 views
VT100 Emulation LIbrary in C# with SharpSSH
I'm messing around with Tamir.SharpSsh and wanted to see if it was possible to use it to implement a console SSH client fully in C#. I do not mean something like putty where it's actually running in ...
1
vote
1answer
135 views
What are the key file formats of JSch and sharpSSH?
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 ...
1
vote
1answer
306 views
Using SSH private key 1.1 on Tamir .Net SSH library
I'm tasked with replacing a Unix Java application that loads files onto a SSH server with a C#.Net application using Tamir's OpenSSH library. The SSH server accepts a key that uses "SSH PRIVATE KEY ...
1
vote
0answers
166 views
SharpSSH shell thread dies on Read()
I'm attempted to use SharpSSH's SSHShell class, but the thread dies somewhere in the stream on a read when the buffer is empty. Looks like they use PipeInputStream for the stream.
I'm calling the ...
1
vote
1answer
299 views
SSH command from C# client redirecting files
The original Unix implementation simply did something like this:
ssh [batchname] < [inputfilename] > [outputfilename]
I need to be able to do the same thing from a windows machine running an ...
1
vote
1answer
358 views
How to get a Stream object for a remote file on SFTP using SharpSSH library?
How can I get a Stream object to read the file that is on SFTP share?
I see that there is functionality to download a file from SFTP using Sftp class, but I need a Stream object to be able to show ...
1
vote
1answer
825 views
SharpSSH gets stuck in an infinite stream read in C# SSH app
Afternoon all,
I'm having a small problem with the SharpSSH library for .Net
(see http://www.tamirgal.com/blog/page/SharpSSH.aspx)
SshStream ssh = new SshStream("some ip address", "some ...
0
votes
1answer
30 views
How to use SharpSSH SFTP library for .NET with a proxy?
i am using SharpSSH library to upload files to a SFTP server. I can do it fine through my home PC, but from my work's PC, I can not access the server. After contacting the sysadmins (located in ...
0
votes
0answers
25 views
Transfering file via SCP to different folders on desination machine using SharpSSH in .NET
I'm try to use sharpSSH to copy files from a windows machine to a unix machine into an specific folder, I'm doing this:
var tmpWorkingDirectory =@"c:\someFolderWithTheFiles";
var directoryInfo = new ...
0
votes
0answers
38 views
Does sharpSSH ever raise the OnTransferEnd event if the file transfer has failed
I've got a project which treats all transfers which generate the OnTransferEnd event as successfully transferred. I have been trying to get a transfer to break mid way through to see if OnTransferEnd ...
0
votes
0answers
80 views
can not rename remote file using sharpssh
i wrote like the following code.
but this code is not available...
when i execute, occur.
if anyone knows something, give me advice pls...
thanks in advance.
void sftp_OnTransferEnd(string src, ...
0
votes
0answers
190 views
SharpSSH Timeout on Connect
I'm using SharpSSH to connect to a Fedora web server to upload/download/delete files. I was using Ubuntu before and had no problems, but with Fedora I'm starting to get these timeouts.
It happens ...
0
votes
0answers
76 views
SHARPSSH sshell component works on Visual Studion 2008 but not in SharpDeveloper 4.0
I have a code .. from visual studio which works perfectly with no error ..
I copied the class file and imported everything .. to sharpdeveloper ..
same dlls ..same class files .. no error generated ...
0
votes
1answer
99 views
SharpSSH - setting connection “trust” to true
There have been plenty of articles on using the SharpSSH component but i nonetheless want to ask this as i cannot find the answer from the gazillion articles and blog posts over the net and at stacko. ...
0
votes
2answers
226 views
SharpSSH .. how to determine if a process is finished
Im using SHARPSSH SshShell, i was able to connect to my unix box .. i was able to issue my commands (although having a problem verifying the result)
I was able to issue a TAR command , my problem ...
0
votes
0answers
369 views
SharpSSH: How to use SFTP.Put(string[] fromFilePaths, string toDirPath) Method?
I'm trying to troubleshoot a problem I ran into while attempting to use the Sharp SSH SFTP library. When attempting to use the Put method, I receive an error message that there are "Illegal ...
0
votes
1answer
723 views
Use SharpSSH to download a file from a SFTP server?
I am using SharpSSH (http://www.tamirgal.com/blog/page/SharpSSH.aspx) to upload a file to some sftp server. This works nice. Now I want to download a file and I guess the Get method can be used for ...
0
votes
0answers
437 views
I need help patching a SharpSSH bug with an infinite loop stream read
SharpSSH is pretty neat and works well for our needs on our project.
The thing is, there's this bug that makes it nearly unusable when dealing with standard output and standard error commands.
The ...
0
votes
1answer
215 views
SharpSsh - script runs twice in csh and ksh
i'm running a script from ASP.NET/C# using SharpSsh. I realize when the script runs and i do a ps -ef grep from unix, i see the same script running twice, one in csh -c, and the other with ksh. The ...
0
votes
0answers
236 views
Tamir SSH - read gets struck indefinately
I am using tamir ssh for running commands remotely, as it is not possible to know command prompts for all the machine i decided to use this code
while (myFlag)
{
**input = ssh.IO.ReadByte();**
...
0
votes
1answer
801 views
SharpSSH - SSHExec, run command, and wait 5 seconds for data!
I have this code:
using System;
using System.Text;
using Tamir.SharpSsh;
using System.IO;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
...
0
votes
3answers
1k views
SharpSSH Progress and Rename
VB2005 and SharpSSH. Using the library to connect to a remote server and copy a file. I have the process working fairly well but have some smaller things which I cant seem to resolve as documentation ...
0
votes
2answers
269 views
SharpSSH with Persistent ShellExec connections
I'm using SharpSSH to connect to an SSH server and I've tried using both SshShell and SshExec.
I need to be able to take a series of commands and send them to the server in order, so SshShell doesn't ...
0
votes
1answer
759 views
SharpSSh: RunCommand in SshExec is always returning an empty string
When Using SharpSSh and the SshExec class, I can't get the RunCommand to work, it always returns an empty string. When I debug the SharpSsh library it returns -1 when it tries to read the command from ...
0
votes
2answers
710 views
Running a command that produces no output with SharpSSH
I want to run a command using ssh.
I am using the SharpSSH library, as in this example:
using System;
using Tamir.SharpSsh;
class Program {
static void Main(string[] args) {
string ...
0
votes
2answers
2k views
Can't get SharpSSH to connect via FTP
I'm having trouble making a secure FTP connection using SharpSSH. Up to now I've been using the DOS command line app MOVEit Freely to make the connection, and it connects fine:
C:\> ftps -user:ABC ...