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

No reply string using FTPSClient

when I use the this code, my app connect to the server, but I get no reply string. When I connect with a ftp client I can see the messages. Code: FTPSClient ftp = new FTPSClient("TLS",false); try{ Log.d("DEBUG","CONNECT TO SERVER"); …
Laire
  • 1,290
  • 6
  • 22
  • 49
0
votes
2 answers

Java FTPS fails to retrieve file list (FileZilla Client works fine)

I am using Apache Commons Net (v3.5) with a Java 8 to connect to a remote FTPS site (i.e. out on the internet). I am able to easily connect with a FileZilla client on my Windows 10 machine, but my Java program is unable to complete the same steps. …
SpartanXL01
  • 1
  • 1
  • 2
0
votes
0 answers

Using PhpStorm 2016.1. Error while connecting via FTPS - Could not list the contents of folder

I'm on a Mac and using the latest version of PhpStorm 2016.1. I had version 6.0.4 and was having problems connecting via FTPS (I'm using credentials which are working on FileZilla). I looked here and other places online and it said that enabling…
Prathamesh Datar
  • 375
  • 1
  • 4
  • 20
0
votes
0 answers

FTPS in Spring or Applet

I have a requirement to provide Secure-File-Upload file feature as a new service in my existing application. Expected Upload file size would be huge like over 100MB. If I do plugin-in such feature into my application it will surely die. At the same…
0
votes
1 answer

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…
0
votes
1 answer

error using lftp to make secure ftp connection to vsftd: gnutls_record_recv

Trying to contact vsftpd using lftp with FTPS (FTP over SSL). However I keep getting an error like this: gnutls_record_recv: A record packet with illegal version was received What is the solution?
aaa90210
  • 11,295
  • 13
  • 51
  • 88
0
votes
2 answers

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…
Colin Mathews
  • 155
  • 1
  • 8
0
votes
1 answer

Get file list from FTP and download specific files

I want to daily download some files from a FTP-server of which I don't know the exact filename. The filename is structured like: Report-date-time.txt Report is static, date is predictable (yesterday) but time is unfortunate dynamic and…
Glarp
  • 103
  • 1
  • 10
0
votes
2 answers

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

are there any good books/tutorials decscribing how to use CURL library under C++ to implement FTP / SFTP clients ? Thx for help.
Sebastian Dusza
  • 2,470
  • 2
  • 30
  • 54
0
votes
0 answers

how to download a zip file from ftps server using python

I need to download a zip file from my implict ftps server. Here is the code which I tried to download the file: import sys import chilkat ftp = chilkat.CkFtp2() # Any string unlocks the component for the 1st 30-days. success =…
shilpa
  • 159
  • 1
  • 1
  • 12
0
votes
1 answer

how to download a directory from ftps server using python in windows

I need to login ftps server in windows,am attaching the code which i tried to make a connection with ftps. from ftplib import FTP_TLS ftps = FTP_TLS('my host addres',990) ftps.login('username','password') ftps.prot_p() …
shilpa
  • 159
  • 1
  • 1
  • 12
0
votes
0 answers

FTPS Powershell script

I was wondering is it possible to make an FTPS powershell script to upload and download all files with the same file extension? I have looked and i always see ftp scripts. I been using this script. $sourceuri = "" $targetpath = "" $username =…
Thun
  • 27
  • 1
  • 9
0
votes
1 answer

A Problem while Retriving file from FTPS Server

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…
Toman
  • 1,156
  • 1
  • 12
  • 29
0
votes
3 answers

PHP attempting FTPS transfer creates empty files

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…
Wilhelm Murdoch
  • 1,806
  • 1
  • 22
  • 42
0
votes
2 answers

FTPSClient file upload and download always size 0 and exception

Installed the filezilla server and enabled the FTP over TLS Settings in Settings and started the server. Through eclipse java client i tried to connect to server for upload and download the file using the below code using commons-net apache…
Prasanna
  • 71
  • 2
  • 7