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

SFTP connection with FTPSClient is failing

Below code I'm trying to connect SFTP host using FTPSClient. Instead of FTP client, I'm using FTPSClient to connect. But I'm facing issue to connect. public static void main(String[] args) throws SocketException, IOException { String host…
Shailu
  • 163
  • 1
  • 5
  • 16
0
votes
0 answers

SSL/TLS handshake does not happen - FTPSClient java

I got this method do connect to a local or remote FTP server. When I start this method in Eclipse (IDE), it works fine. But when I try to run it in EBUS-J (it's a Java source code generator with a programming language like BASIC) it wont go pass the…
user7752322
0
votes
0 answers

Write progress while uploading into text file

I wrote a class, that uploads a file to a FTP server perfectly. Now I want to write the actual progress of the upload into a text file. How do I get the transferred bytes ? I tried the following method: new CopyStreamAdapter() { …
user7752322
0
votes
1 answer

Writing data in variable block file of mainframe via FTP/FTPS

First 4 bytes of Variable block file in mainframe contains information about record and block. I'm able to read data from variable block file of mainframe via FTP or FTPS. But while trying to write back the data if I don't append space in each…
0
votes
1 answer

GnuTLS error -15 on vsftpd

I am using ubuntu server with vsftpd service, connecting over SSL. When connecting using Filezilla randomly getting below error. Error: GnuTLS error -15: An unexpected TLS packet was received. Error: GnuTLS error -15: An unexpected TLS packet…
adminz
  • 215
  • 1
  • 2
  • 13
0
votes
0 answers

File upload to ec2 then s3

I have setup an FTPS server with PROFTPD on ec2 and mounted it on s3. I want to upload and download files using java that will first pass ec2 to have an FTPS transfer before it goes to S3. How and what's the best way to do it? ****Client > EC2 > S3…
0
votes
0 answers

FTPS Talend SSL Issue

I get error when I want to upload file to FTP server with talend TFTPPut component. This is the error: SSL connection failed; session reuse required: see require_ssl_reuse option in vsftpd.conf man page
Yassinovich
  • 31
  • 1
  • 4
0
votes
0 answers

FTPS explicite talend issue

i can upload file on FTP server with tFTPPut Talend SSL connection failed; session reuse required: see require_ssl_reuse option in vsftpd.conf man page
Yassinovich
  • 31
  • 1
  • 4
0
votes
0 answers

Why is login failing for Apache FTPSClient?

I am trying to connect to an FTPS site using Apache Commons FTPSClient like so.... def ftpsClient = new FTPSClient() ftpsClient.connect('9.14.113.212') def reply = ftpsClient.getReplyCode(); println "Reply is $reply" println "Login is…
AbuMariam
  • 3,282
  • 13
  • 49
  • 82
0
votes
1 answer

Apache FTPS Client storeFile to windows FTPS server from Unix/Linux/Max issue

i have an issue transferring files to Windows FTP server from Unix/Mac/Linux env. while the exact same java code works from windows pc. from *Nix/Mac the transfer only worked with this commands on the ftp session set ftps:initial-prot set…
2Big2BeSmall
  • 1,348
  • 3
  • 20
  • 40
0
votes
1 answer

FTPS storeFile return always false Java

im trying to send files to FTPS server connection method: FTPS, ACTIVE, EXPLICIT setFileType(FTP.BINARY_FILE_TYPE); setFileTransferMode(FTP.BLOCK_TRANSFER_MODE); Checking the reply string right after connect i got: 234 AUTH command ok. Expecting…
Hard Worker
  • 995
  • 11
  • 33
0
votes
0 answers

Are there some dark magic rules in FTPS server passwords?

I am connecting to an FTPS Server with credentials like: myusername 86FAT!Q@12.. I can connect to the FTPS Server just fine with these credentials. I was developing a small application with Java to connect to this FTPS Server and I wanted to test…
Koray Tugay
  • 22,894
  • 45
  • 188
  • 319
0
votes
1 answer

How to download file through ftp with tls authentication through spring integration

I am not able to download the file from ftp server when it is TLS authenticated. I have used the DefaultFtpsSessionFactory session for TLS authentication.EveryTIme polling is started "ERROR DURING HANDSHAKE OCCURS". Although i am able to download…
0
votes
1 answer

SSLEOFError on FTPS using Python ftplib

I'm connecting to an FTP site using FTPS (explicit). Connecting and basic commands work just fine, yet when I try to retrieve a directory listing or a file I get an SSLEOFError. from ftplib import FTP_TLS ftps =…
gergeyb
  • 1
  • 1
0
votes
1 answer

Connect to Amazon Cloud with FTPS

I'm looking to develop a web app which will be using Amazon cloud, but its dependant on the need for a 3rd party being able to deploy data files to Amazon through FTPS. The 3rd party only uses FTPS and not ftp or sftp. Is connecting to Amazon Cloud…