ftp

FTP Upload multiple files without disconnect using .NET

I'm uploading multiple files using FtpWebRequest. But for every file I'm opening and closing a connection. How can I upload multiple files using the same connection? Like a ftp client application, connect using username and password, change directory, upload file1, upload file2, upload file3, disconnect. ...

What is the simplest way to create my own FTP server?

What is the simplest way to create my own FTP server in C#? Some of the folders will be virtual folders. The authentication should be from a SQL Server database, which includes tables of the ASP.NET Membership API Authenctication. Any ideas? ...

how to send and receive files from server in ObjC?

Hi all, How to send and reveice files from a ftp server ? If any sample project or example is there ,then its easy to understand. Thanks ...

FTP vs HTTP upload on iPhone

In my iPhone application I need to upload images to a server. I don't worry much about security and stuffs, just need a fast and reliable method. I can embed my image data on the HTTP post request, or I can create a FTP connection to the server (using the SimpleFTPSample from Apple). The disadvantage of each method is: - HTTP: time out i...

How do I traverse a remote (ftp) directory tree with Perl?

Before I reinvent the wheel, is there any module like File::Find that works via ftp? ...

Subversion Dreamhost Coda

I am a intermediate web developer, I am attempting to integrate subversion into my workflow. I have come to the understanding, that it is something important to learn, and can save me from rewrite issue nightmares in the future. My current host is dreamhost I have setup subversion with them, and I have checked out the project(my syntax...

Ruby Net::FTP Progress Bar

Does anyone know of a way to get a status update from ruby's Net::FTP library while downloading a file? I am trying to implement a web interface that shows a progress bar for percentage remaining when downloading a file from a remote ftp server. ...

Rails storing host password for FTP model

I'm building a rails app that communicates with other servers via ftp. The user needs to input their host, username and password for their particular ftp server. I wouldn't want to store their password as cleartext, but I need the actual password to connect to the server when it comes time. Would it make sense to use a two-way hash? ...

How to allow anonymous login in org.apache.ftpserver?

I wrote a little code like this to start an ftp server embedded in my application. It's based on apache ftpserver I found that anonymous user could not login. Client keeps get 530. Do I have add a configure file for ftp? I can not find any API to create a User to add to UserManger. private void start_ftp() throws FtpException { ...

FTP connection and upload under proxy using command prompt and Putty

Dear all, I have a small access database which makes CSV file that should be uploaded on a remote FTP server. I need to make automated process to upload a file using command prompt (which I access through VBA shell). Issue is that I can access internet only via proxy, and can't seem to find any resource online on how to set up putty (...

Java upload jpg using JakartaFtpWrapper - makes the file unreadable

Hello, I've been using JakartaFtpWrapper to upload files from the client Java application to my server (for backup purposes). The files that are uploaded are text files, png files and jpgs. I've noticed that the jpg files which are valid on the local machine - somehow become unreadable (corrupt files) on the server (where they were FT...

How to configure Apache FtpServer?

I found this very simple description on Apache FtpServer's document: Integration with Spring Framework Apache FtpServer uses Spring Framework to implement the configuration. That also means that we get the added benefit of full integration with regular Spring XML configuration. For example, you can embed the "server" element whe...

Is there any simple Java FTP Server libraries that is embeddable ?

I've tried Apache FTP Server but it lacks document and support. And it's totally based on spring configuration framework which I don't think I could understand very quickly. What I want is just a simple FTP Server that could I could embed into my application I could handle "download" commands using my own code, sending some data fro...

How to make visual studio 2008 deploy to ftp in ACTIVE mode?

I'm using Amazon EC2 services and would like to publish my WCF application to this server using the visual studio 2008. Instead of opening so many ports on the amazon firewall, I'll use the ftp ACTIVE mode which will need to open only two ports (20,21). Alas, visual studio 2008 is determine to use only PASSIVE ftp connection, why?! ...

uploading files over current FTP content

a vital folder marked as System was deleted from ePublisher, the back end (administrator login) for a website, because of which a quick search feature cannot be performed. The developer of the website has compressed the website folder on his backup drive and sent it to me. He says I have to upload them over the current FTP content. What ...

Host no longer supports PHP functions for FTP! Workaround?

So my host just updated all their hardware and software and they have decided to no longer support any of the PHP FTP functions (ftp_connect, etc). Anyone know a way around this? Luckily I have classed all my PHP functions so I will only need to build the work around once (If there is one?) Maybe Upload using fSocket? Any examples / ...

FTP permission denied error

I am trying to FTP a RAR (zipped) file to another server but am having problems doing so. This is a Windows environment. I know that my FTP connection is setup correctly because I have already transferred over several other RARs. But the difference from what I can tell is that this RAR that is failing is larger in size. It is 761 MB....

connect WS_FTP Server 7.1 with .net ftpRequest

I'm trying to upload a file to this ftp server using System.Net.FtpWebRequest in .net 2.0, but keep getting an error: The underlying connection was closed: An unexpected error occurred on a receive. Do you have any suggestions on how to figure it out? and the strange thing is I can connect it using IE6, but not IE8... thanks a lot ...

Dreamweaver Throwing Errors About "Access to ...\dwsync.xml was denied"

I'm using Adobe Dreamweaver CS4 on two systems - one running Windows Vista and the other running Windows7. I've got a client's web site (several thousand files) manually mirrored between the two systems. On the Win7 machine, when putting files to the server, I get lots of "Access to ...\dwsync.xml was denied" errors. The Dreamweaver...

What tools do you use to upload files to amazon ec2 Linux instances?

I am using the standard fedora AMI with the LAMP stack bundled and I want to upload files onto the server from my Windows desktop. What is the "normal" approach for this? I am not a UNIX admin by any stretch, although I am more than comfortable with FTP and the basics of a BASH shell. As far as I can see there is no FTP server install...