ftp

Is there a way to use VS with a remote site accessible only by sftp?

I'm working with with asp.net and writing a few classes (controls for the CMS) to use on my website. At the moment i'm using a text editor (UE) which has sftp support and syntax highlighting to edit the files and save via sftp. Then i just test it out on the test site. It's working well.. but since i'm very new to c# i'm always looking u...

AsyncCallback in .net web page run away...

I have been working on a small project on and off for a while and I think I am close but it has 'issues'. The idea is to FTP a file up to a 3rd party, they process it and 5-10 minutes later they generate a result set which needs to get downloaded and processed on our side. So the code might be a little simple, it's just something I cob...

what is the best free ftp component for delphi

I'm using delphi6, and our company don't want to upgrade it, and I found Tidftp lack the MLSD command, So what is the free ftp component you are using now? ps : I searched for one on Google, but I don't know which is stable and standard. ...

How to interrupt server Connection in C#

Dear all, one my application features is tod download files from our ftp server. And of course this feature reqiures to cancel this operation (Cancel Downloading). Now, my Download Function is as follows: try { reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://" + uri + "/" + fileName)); reqFTP...

Easiest way to tranfer large files to remote server in .NET

Hello. I am writing a program in C# / VS2005 to back up our production database, compress it, and transfer it to a remote server. I have a simple ftp site set up on the remote server. The problem is that the file only transfers about half way (~500 - 600 MB) and the program throws the exception: "An existing connection was forcibly...

How to build upload functionality into a web page

I've seen a number of different solutions for doing this but I wonder if anyone can suggest which is the most elegant and secure version of letting users upload their own files to a folder on their own shared hosting? (php.ini etc is out of bounds). Files will be anything up to 100mb in size, so maybe an FTP based solution would be best...

Connect to FTP Server with .net 2.0

I'm looking to connect to an existing ftp server, upload a file, wait while the server generates a report on it, and download that report back to the local machine in a vb.net 2.0 winforms project. Is there an existing FTP library that would be helpful to me for this? My task seems simple enough that I'd rather not get into the world o...

How to solve FTP timeouts in C# app

I'm using the following C# code to FTP a ~40MB CSV file from a remote service provider. Around 50% of the time, the download hangs and eventually times out. In my app log, I get a line like: > Unable to read data from the transport > connection: A connection attempt > failed because the connected party did > not properly respond after ...

Unable to access SAN storage device

I am attempting to programmatically FTP a backup file that is stored on a SAN device. The device has been mapped on the server. I tested the application by running it from an icon on the desktop and it works perfectly. When I run the program through a windows service I get an error message saying that the drive cannot be found. The a...

Dreamweaver and Binary PUT via FTP

As we all know (don't we?), the FTP functionality on Dreamweaver is inexcusable for a professional product, but I bear with it because Dreamweaver has other useful stuff that overshadows the FTP. However, I have a specific FTP situation which has been annoying me for a few years now, and was hoping someone had a solution. We use the ZE...

Viewing files in a remote FTP folder from a webpart

Hi there, We're looking to integrate a file/folder view of a FTP share in a SharePoint portal. We recon the best solution would be to create a webpart that reads the contents of the FTP share and displays it in the portal. Is there any third party solutions for this? Has anyone done anything like this before.. and might be able to giv...

Web development text/code editors for Windows

I'm currently using E-TextEditor. This application is trying very hard to be TextMate for Windows, but unfortunately it isn't very stable. Also, it has some serious problems opening minified files (e.g. 70 kB JavaScript files), which is unacceptable IMHO. Notepad2 has no problem at all opening these files, and seems to be very stable as...

What will happen if Perl tries to call move() on a file that is being uploaded?

Someone is FTPing a file of size 10Mb to folder on a linux server. While the file is in transition a cron wakes up and fires off a Perl script that is designed to look at the ftp folder and move whatever it finds there to some alternate folder. I'm using the move() function from File::Copy. The Perl process actually renames the files as...

How to use linux command line ftp with a @ sign in my username?

How can I run this on linux command line when my username has an @ sign in the middle? ftp -u user:password@host/destination_folder/ sourcefile.txt My username is "[email protected]" and it thinks my host is "domain.com". I am stuck and cannot google my way out. Any help greatly appreciated. NOTE: This is an unattended upload, so I c...

C#/.NET - Continuous Integration and FTP Deployment

Note: I'm a newb to Continuous Integration What is the "best" approach to get these functions: Build (assemblies and web app) Testing (MbUnit or NUnit) and if it passes tests deploy via FTP to the main server (internet). And what I mean by "best" is cheapest option, and easy to learn (low headache). ...

Device emulator and FTP, inside a c# mobile application project

Hi guys, For my c# mobile application developed with visual studio 2008, i am trying to use the FTP. FTP works fine from the real device, but it does not work when i use the device emulator: the connection is successful, but it failed when attenpting to retrieve data. Both use windows mobile 5. Did some of you already had this problem ...

During a FTP upload, the total size of the file is send?

When you send a file by HTTP, web browsers send the total file size in the http header. Do you think it's the same with the FTP protocole? Martin ...

WPF for FTP interface

I'm creating a program using WPF that has an FTP like interface with 2 list views and 2 buttons between them. The problem I have is that I don't know how to set the 2 list views to fill up the available space without getting the buttons to do so as well. ...

Error when trying to download a file using .net FtpWebRequest class

Error message is: The server returned an address in response to the PASV command that is different than the address to which the FTP connection was made. I get this message when I try to call GetResponse() method below... Please help. Here is my C# code : FileStream outputStream = new FileStream(feedXmlPath + "\" + "testXml", F...

Python's FTPLib too slow ?

I have been playing around with Python's FTP library and am starting to think that it is too slow as compared to using a script file in DOS? I run sessions where I download thousands of data files (I think I have over 8 million right now). My observation is that the download process seems to take five to ten times as long in Python th...