ftps

FTPS - Signaling that a file has been downloaded

Hi, I'm working on a Java-project where I need to download files via FTPS and wonder how/if there is a way to signal that the file has been downloaded at a later time, i.e. not as the actual download has completed? I guess there need to be some setting in the FTPS-protocol and some message that I need to send to inform of the completed ...

Can explicity ftps via Filezilla but not from code

As the title states, I can connect to another machine from my server via FileZilla Client, but I cannot via code (.Net - FTPWebRequest) I know the code is good, as it works from another machine. The particular machine I am having trouble with is behind a NAT, but the SA has opened all ports for traffic from the host we are trying to ta...

FTPWebRequest behind NAT (PASV,SSL)

Has anyone successfully used the .Net FTPWebRequest class to ftps to a remote server from behind a NAT? My code is as follows: Dim URI = "ftp://" & sRemoteDir & "/" Dim ftp As FtpWebRequest = Nothing Try ServicePointManager.ServerCertificateValidationCallback = AddressOf ValidateServerCertificate ftp = CType(FtpWebRequest....

FTPS problem: "A TLS packet with unexpected length was received."

I'm trying to connect to an FTPS server (not SFTP). I am connecting from a linux system, so I have tried lftp, ftp-ssl, and even using php's ftp_ssl_connect, but none of them work. (I have been able to connect to other FTPS servers using all or at least some of the above methods). The most descriptive error I have is from lftp with ...

FTP to FTPS proxy

Visual Studio 2010 allows to publish web projects via FTP. Great feature but due to security reasons FTP is disabled at the target site (FTPS is available). As far as I know VS2010 does not support FTPS ;( Is there any plugin for VS2010 that implements FTPS support? Or, maybe, a simple proxy for installation on the local PC that translat...

Help! PHP attempting FTPS transfer creates empty files.

Hey, all. I'm currently attempting to use PHP to transfer small files between our server and a remote FTPS (FTP over SSL) server. I'm the standard fair to get this done, ie, file_put_contents, file_get_contents, etc... with the following stream context: stream_context_create(array('ftp' => array('overwrite' => true), 'ssl' => array('all...

SSLSocketImpl.startHandshake() throws SSLHanshakeException/EOFException when resuming cached sessions

Using Apache FTPSClient to listFiles(String).... The aplication crashes sometimes after resuming an SSL Session and then calling sslSocketImpl.startHandshake() from the Apache FTPSClient code. I set javax.net.debug to print the ssl information... System.setProperty("javax.net.debug", "all"); And this is what I get. %% Client cached...

A Problem while Retriving file from FTPS Server

Hi All, I am working in an application development. On that application i am performing files store, retrieve and delete operations. For identifying the files on server i am using an index(a hash map file) file. every time when i perform upload operation i update "index" file and upload "index" file on server along with other uploading ...

Looking for a good book covering CURL library under c++

Hello, are there any good books/tutorials decscribing how to use CURL library under C++ to implement FTP / SFTP clients ? Thx for help. ...

Component or Source for Running an FTP Server via C# (with SSL)

I'm surprised by the lack of products out there for running your own FTP server in managed code. I'm looking for either a product or thorough source code for building an FTP server in C# that supports SSL. I need complete control over the directory/file handling, not just serving files from a local directory. Clever Internet .NET Suite ...

bad line length exception in jscape FTPS library

All, I am getting this exception com.jscape.inet.ftp.FtpException: bad line length at com.jscape.inet.ftps.FtpsClient.(Unknown Source) at com.jscape.inet.ftps.FtpsClient.createUnprotected(Unknown Source) at com.jscape.inet.ftps.Ftps$DefaultStrategy.createClient(Unknown Source) at com.jscape.inet.ftps.Ftps.connect(Unknown Source) at...

FTPS connection using jscape ftps library

All, I am trying to create an FTPS connection using the jscape library from jscape.com My FTP connection works fine, however when I try to create an FTPS connection, the application simply hangs at the line: ftp.connect(); where ftp is an instance of com.jscape.inet.ftps.Ftps. I have provided userid, password and starting directory. ...

How to use a Client Certificate with ftp_ssl_connect

I'm looking for the best method to work with an FTP server over an SSL connection. (Generally, pushing a file up as well as getting a list of files on the server). One requirement for this project is that I must use a client side X.509 certificate as part of the authentication process. Can I use a client certificate using the php functi...

How do I download a file from an FTP server using FTP over SSL using .NET?

My post title almost states it all: How do I download a file from an FTP server using FTP over SSL using .NET? I have read a bit and there are several 3rd party components to purchase that wrap up this functionality. The deal is, this is a very specefic need and is not going to grow much, so if downloading a file from an FTP server us...