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
3
votes
2 answers

How to connect to FTPS server in node using basic-ftp module

I am using https://www.npmjs.com/package/basic-ftp basic ftp package to connect to ftps server. I have tried my other extension but failed to connect to ftps server below is my code const ftp = require("basic-ftp") example(); async function…
Somnath Rokade
  • 655
  • 1
  • 9
  • 27
3
votes
3 answers

How to use Wagon maven plugin with FTPS

I'm using the below configuration to upload files to a remote server through FTPS protocol : org.apache.maven.wagon wagon-ftp 3.0.0
aminedev
  • 323
  • 3
  • 9
  • 22
3
votes
1 answer

Is there a way to use Spark to load a file in FTP using TLS

I am in the process of moving a python process to Spark. In python we are using ftplib to connect and download a file to a EC2 instance. Once file is downloaded, we are uploading to S3. We are transitioning to severless infrastructure and would like…
Jason Plowman
  • 190
  • 1
  • 1
  • 10
3
votes
2 answers

Connect to FTP server with TLS/SSL Implicit Encryption in Node.js

I have Node.js app, I'm trying to connect to an FTP server and list the folders/files that are in the FTP server folder. The server is configured with: TLS/SSL Implicit Encryption Here's my code: async function listFilesInFtpFolder() { const…
Eric Bergman
  • 1,453
  • 11
  • 46
  • 84
3
votes
1 answer

How to create “FTPS” Mock Server for unit test in Java, Getting Error - javax.net.ssl.SSLException: 502 Command not implemented: AUTH

I need to mock "FTPS" server as part of unit testing. I am getting "javax.net.ssl.SSLException: 502 Command not implemented: AUTH" via using mock FTPS Server. I went through http://mockftpserver.sourceforge.net/ and How to create a "FTPS" Mock…
Abhishek Kumar
  • 435
  • 1
  • 6
  • 16
3
votes
0 answers

Apache FTPSClient fails to put file despite successful connection and login

I am using Apache' FTPS Client to connect and place a file on an server over FTPS. But it fails on the storeFile method.... String url = "myTestSTore.com"; String user = "fake"; String password = "reallyFake" FTPSClient ftpClient = new…
AbuMariam
  • 3,282
  • 13
  • 49
  • 82
3
votes
3 answers

ftplib storbinary with FTPS is hanging/never completing

I am trying to upload a file to an FTP site using FTPS, but when I attempt to store the file, it just hangs after the file is fully transferred. global f_blocksize global total_size global size_written f_blocksize = 1024 total_size =…
ryansin
  • 1,735
  • 2
  • 26
  • 49
3
votes
1 answer

JAVA FTPSClient file listing issue

I am using apache commons-net 3.6 library to connect FTPS server. FTPS server is behind NAT of thirdparty. and I can't change any settings on server side. I can login to server, but can not list files. I've tried same code with some public FTP and…
ali
  • 145
  • 14
3
votes
1 answer

Error after FTPS transfer finishes with Python ftplib

I'm trying to upload file into FTPS server (Wing FTP Server / Cerberus FTP Server 8) with following script. from ftplib import FTP_TLS ftps = FTP_TLS('192.168.133.69') ftps.login('1011', '7c52xK9') ftps.prot_p() filename = 'upload.pdf' myfile…
M.H.
  • 223
  • 3
  • 10
  • 23
3
votes
1 answer

How to connect to a implicit FTPS server with nodeJS?

For a project I have to connect to a FTPS server over a implicit connection. I tried with node-ftp, because it seems that this is the only library, that supports the implicit connection. I connect using the following code: var ftpC = new…
Peter
  • 31
  • 4
3
votes
0 answers

FTPS over SSL/TLS using Apache Commons to upload a file fails

I am trying to implement a FTP file upload in android, using Apache commons library. The communication must be done through explicit TLS authentication. I can login, connect to server and list files successfully, but when i am trying to store a file…
3
votes
1 answer

Best method to close a keep-alive FTP or FTPS connection in C# (.NET 4.6)?

In C# (.NET 4.6) I am using a keep-alive FTPS connection to download a couple of files in a loop like this: foreach (string filename in filenames) { string requestUriString = GetFtpUriString(myDir) + "/" + filename; FtpWebRequest request =…
d.k.
  • 61
  • 5
3
votes
3 answers

PowerShell FTPS upload fails with "System error."

The problem: A client requires that we upload extracted data from our system to their box.com platform, rather than our normal SFTP utility. I have box.com credentials, and am aware they require FTPS not SFTP, and require passive mode. I've cribbed…
Will Foy
  • 31
  • 1
  • 3
3
votes
0 answers

Eclipse FTPS (SSL Explicit Encryption) Connection Using Remote Systems Explorer

Is it possible to use Eclipse Remote Systems Explorer to establish an FTPS TLS/SSL Explicit Encryption connection? I've worked with RSE before to create connections for both FTP and SFTP but I don't see any way to do FTPS. Searching through other…
Shaggy
  • 1,444
  • 1
  • 23
  • 34
3
votes
12 answers

FTPS connection with SFTP/FTP Sublime Text plugin

Can I use Sublime SFTP plugin (from here) to make an FTPS connection type? I was previously working with Notepad++ and the NppFTP plugin but I want to migrate towards Sublime Text however I have problems using the SFTP plugin to connect to my…
Florin Frătică
  • 99
  • 1
  • 3
  • 12