sftp

error adding reference in .net 3.5

Hi Im trying to add a reference to a dll i downloaded which I want to use for some sftp work. as soon as i add it i get "could not load file or asse3mble....failed to grant minimum permission requests" Is this to do with my own account permissions? thanks DD ...

SFTP transfer file and move file to folder

Hi all, This is my first post so please excuse my ignorance. I am using a vbscript to zip all .csv type files in a particular folder. After some google searches, I have found a workable vbscript to do this and have enabled a scheduled task to automate this. What I need to do next is to transfer the zip file via sftp and then "move" tha...

How can I upload data using ftp, http, or a socket from a spreadsheet with VBA for Microsoft Office?

I have an Excel spreadsheet, and I want to put a button on it, so users will be able to upload their data to an http/ftp server, or send the data to the server using a socket directly. I have noticed that some people creates an ftp script to do. First of all, I'm not sure that everybody has ftp on their Windows machine, and secondly, I w...

Java SFTP Server Library?

Hey guys, I've been looking all over for this and can't seem to find anything. Is there any library for Java that can let you easily implement an SFTP server in your application? I'm trying to receive files via SFTP, but I can't seem to find any implementation of an SFTP server. I've found FTP/SFTP/FTPS client libraries, and FTP/FTP...

SharpSSh: RunCommand in SshExec is always returning an empty string

Hey! 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 a stream. It works when I use the sftp class in the same library, but that class doesn't support all the ftp commands I need. Here ...

[c#] Sharpssh directory listing

Hey, 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 sharpssh for sftp. Can somebody point me into the right direction? Thanks in forward, Bas van Ooyen ...

'Put' in SFTP using PAramiko

Hi, I've installed and written the following Paramiko which is unable to put the file. It is easily able to 'get' a file and execute 'ls' commands on it. #set username & password username='runaway' password='runaway' port=22 source= '/Unzip.sh' destination ='/var/mpx/www/http' #SFTP client.load_system_host_keys() print " hostname =%s...

windows domain in biztalk sftp adapter?

hi im just starting to use a biztalk sftp adapter, it seems fairly simple, but Im wondering if it can take a windows style domain with the username? eg sftp://domain//[email protected]/sftp_test/test.txt thanks DD ...

How to set default group permissions for SFTP uploads?

I am connecting to a web server running Debian. Our team uses Apache and all users are members of the www-data group. When we connect to this server via SFTP (e.g. Transmit), all of our newly uploaded files take on a group name that is the same as the user's name (i.e. their primary group). Is there a way to change this default group as...

Using PHP to call a script to manipulate files or ssh?

Hi, I've been told that this is possible to do with PHP. I have my website and there is a selection box. I would like the options to be populated from the contents of a folder on an sftp server. Then upon click I would like to get the associated files and move them to my local machine. Are there any good tutorials on how to do this? I...

Using Biztalk sftp adapter

Hi Ive downlaoded the nsoftware sftp adapter for biztalk, I created a few send & receive ports within biztalk admin just to see if it works, and it does. I now need to build an orchestration with an sftp send port and sftp receive port. Ive a reference to the adapter dll and included it in the project, but IM not sure how to wire it up...

How should I store ftp log on credentials in a MySQL database?

Hey guys, I'm really just looking for some guidance. Here is the scenario: A user can add an FTP account via a password protected control panel. I need to save these credentials so that the FTP account can be connected to automatically. This is easy but I want to take the most secure approach possible. I was thinking of possibly encryp...

Is the format of (p)sftp's dir/ls standard?

I'm putting together something to download some files over SFTP. I'm using Putty's psftp.exe command. When I do a dir/ls in Putty, is the format of the output standardized, either by SFTP or by Putty itself? Or is it just whatever free-form text the server happens to send in response? I ask because I believe in FTP (way back when!), ...

Ruby Dir and File on remote server?

If I have a remote SFTP server with a folder full of files on it that I want to operate on with Ruby's Dir and File classes, is there a way to do that through the net/ssh and net/sftp libraries? I know that net/sftp has a few Dir and File utilities strapped to it, but unfortunately they're not the ones I need. I need File.ctime(my_file...

What is the best way to send/receive a file to a SFTP server in .NET?

I am looking to connect to a SFTP server and both push and pull a file. Initial searches didn't turn up any straightforward "built in" support in .NET, so I may have to buy a third-party library. For authentication, I want to use Public Key Authentication to avoid having to manage periodic password resets, too. ...

jcraft, eclipse sftp plugin documentation

I installed jcraft, but don't know how to use. is there any documentation available?. I googled, checked their site with no help. ...

cURL for SFTP with private key authentication

I need to upload files by SFTP from a PHP script. I think cURL is probably the way, as I have this available on the server. Has anyone got an example of how to use cURL for SFTP using identity key authentication? -- EDIT -- I've just noticed that HTTP PUT might be an alternative, but how secure it that? ...

Python: Getting "EOFError" when using paramiko sftp across modules as a global variable in a custom module

I'm using paramiko to transfer files with SFTP, on a apache server with mod_python. It works fine if I open the SFTP connection in the function called by mod_python (ex. index(req) ). But when I have 10-15 files that all uses a SFTP connection, I want to use a module that starts this connection. I have tried to make a function that re...

Free SFTP client with dll to upload and download file in C#

Hi, I am looking for a SFTP Client which is free. Also it should have a free dll using which I can write code to upload and download file in C# (.NET framework). For example following code is not free, it has 30 days free evaluation, I want it for free, Chilkat.SFtp sftp = new Chilkat.SFtp(); bool success; success = sftp.UnlockCompo...

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 SshStream, which might do kind of what I want, but seems disjoint from Sftp so I might have to implement the SFTP part myself (??) class Cha...