Questions tagged [ftps]

An extension to the commonly used File Transfer Protocol (FTP) that adds support for the Transport Layer Security (TLS) and the Secure Sockets Layer (SSL) cryptographic protocols.

FTPS (also known as FTP-ES, FTP-SSL and FTP Secure) is an extension to the commonly used File Transfer Protocol (FTP) that adds support for the Transport Layer Security (TLS) and the Secure Sockets Layer (SSL) cryptographic protocols.

FTPS should not be confused with the SSH File Transfer Protocol (SFTP), an incompatible secure file transfer subsystem for the Secure Shell (SSH) protocol. It is also different from Secure FTP, the practice of tunneling FTP through an SSH connection. For SFTP, see the corresponding tag .

545 questions
0
votes
1 answer

0 bytes file download with Apache Commons FTPSClient

Using Apache Commons FTPSClient the downloaded file is always stored as 0 bytes. I tried different methods, but get always 0 bytes on the stored file. On the code below I show all three methods. Here is the used code: public static void…
csaffi
  • 23
  • 7
0
votes
1 answer

Upload files from a Gentran server to box.com FTPS

One of our clients wants to automate file upload via FTPS from their Gentran server. And they are using a Gentran server. We use box.com as a secure place to exchange files. They ask us about SSL key, but obviously we don't have it for box.com.…
chabislav
  • 939
  • 1
  • 8
  • 27
0
votes
1 answer

Connection reset with FTP/S java

I am trying to connect to my FTP server with FTP/S using simple java program. I am using JDK7u79 and Apache Commons Net 3.3. I already had a look at similar questions…
ParagJ
  • 1,566
  • 10
  • 38
  • 56
0
votes
1 answer

URL for my FTPs server to put as a REST method parameter

A REST API has a method for reading from a .csv file that exists on a URL and claims that this URL can either be a public address or an FTP server. I have already succeeded at uploading the file to an FTPs server, but that is not my question here.…
disasterkid
  • 6,948
  • 25
  • 94
  • 179
0
votes
1 answer

libcurl returns CURLE_URL_MALFORMAT with # in file name

When I try to transfer file using FTPS and destination file name has character # in your name the transfer fail with this error: 3/URL using bad/illegal format or missing URL How inform libcurl to do not reject this character in destination file…
lsalamon
  • 7,998
  • 6
  • 50
  • 63
0
votes
1 answer

How do I get the file/folder path using Apache Commons net FTPS Client

I am using Apache commons ftps client to connect to an ftps server. I have the remote file path which is a directory. This directory contains a tree of sub-directories and files. I want to get the path for each file or folder. Is there any way I can…
eechpeech
  • 255
  • 1
  • 4
  • 17
0
votes
2 answers

Failed to retrieve directory listing FTPS on aws ec2

I have setup a FTPS server on my AWS EC2 Ubuntu instance using vsftpd. Im unable to connect using FileZilla. Status: Connecting to 52.32.88.85:21... Status: Connection established, waiting for welcome message... Status: …
eechpeech
  • 255
  • 1
  • 4
  • 17
0
votes
1 answer

How can I setup an FTPS server on my aws EC2 ubuntu instance

1) I am trying to setup an FTPS server on my EC2 Ubuntu instance. I can only find resources to setup tutorials for an SFTP server. 2)From what I understand, the SSL certificate is only applicable to the server. When a user tries to FTPS to my…
eechpeech
  • 255
  • 1
  • 4
  • 17
0
votes
1 answer

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 …
IniTech
  • 781
  • 7
  • 20
0
votes
1 answer

FTPS connection with C#

I am looking for some help with creating an ftps connection, not sftp - in c# I am looking to download a file, and upload a file, using ftps and c# However all my google searches tells me, to download external libraries and stuff - dosnt C# have…
user2199192
  • 165
  • 1
  • 2
  • 10
0
votes
1 answer

FTPS via proxy authentication

Is there a possibility to have an FTPS server connection via proxy with authentication? To connect to normal FTP Server with proxy authentication, I used FTPHTTPClient from Apache Commons. But, I couldn't find a way to set proxy details within…
0
votes
1 answer

What command I use to change file permission using ftps connection?

My application need to change remote file permission after upload (STOR). It is using ftps connection for this. What is the correct command for this, similar to chmod command? I searched FTP Commands and Extensions and I not found.
lsalamon
  • 7,998
  • 6
  • 50
  • 63
0
votes
1 answer

Linux FTP proxy product supporting FTPS (FTP-SSL/TLS)

I'm wondering if there's any existing FTP proxy product that supports FTP-SSL/TLS that can be used under Linux Redhat environment. There is a tlswrap however looks like it's been out of maintenance for years.
Luke
  • 1
0
votes
1 answer

Error in using Net::Lite::FTP

I am using the Perl library Net::Lite::FTP for FTP TLS protocol. I am getting the error Damn! undefined response while connecting to a remote. I think the problem is with Net::SSLeay::Handle. If I comment the line 151, 271, 310, 373 in the…
issac
  • 11
  • 1
0
votes
1 answer

FTPS - Signaling that a file has been downloaded

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…