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

Rebex: Transfer Files From Ftp/Sftp To Ftp/Sftp

Is there a method using the Rebex ftp library to directly transfer files between 2 ftp servers without having to download locally and then push to the second site?
Tim
  • 1,249
  • 5
  • 28
  • 54
0
votes
2 answers

Python - move / upload specific files to FTPS

I'm trying to implement a file transfer automation with python 2.7 on Windows. So I have a FTPS server, I need to move some files from it to a local directory and to upload some files from local to FTPS The FTPS structure is like so: - ROOT FOLDER …
anarchist
  • 383
  • 2
  • 5
  • 18
0
votes
0 answers

Unable to get File Listing from Apache Commons net Implementation

SMALL UPDATE: If it does connect further I get (continued debug info): 200 PROT P OK, data channel will be secured. CCC 200 CCC Context Enabled. PASV Exception:Could not parse response code. Server Reply: ': command not understood. I am working on…
DaveMC08
  • 61
  • 5
0
votes
2 answers

Anyone know of an FTPS client that runs on java 1.3?

I know 1.3 is old as dirt, but I don't have an option of doing a jvm upgrade at this point.
BillMan
  • 9,434
  • 9
  • 32
  • 52
0
votes
3 answers

iPhone FTPS client

I have no clue how to make an FTPS (FTP over SSL) on the iPhone. I would like to use the following code ftpStream = CFWriteStreamCreateWithFTPURL(NULL, (CFURLRef) url); CFWriteStreamSetProperty(ftpStream,…
user231048
  • 61
  • 1
  • 2
  • 5
0
votes
1 answer

How to find port number on FTP server installed on IIS 7.5 Windows 2008 R2

I have installed a FTP Client on my local machine and I would like to transfer/upload files from my local to a remote server(Windows 2008 R2 with FTP installed on it). How can I find the port number on the remote server? Please note that I have full…
sunskin
  • 1,620
  • 3
  • 25
  • 49
0
votes
1 answer

PHP FTPS with Certificate

I'm looking for a way to connect to a FTPS server from PHP and I need to send a client certificate. I looked at the related questions, but they don't answer the question: How to use a Client Certificate with ftp_ssl_connect Connecting to FTPS using…
Tom
  • 874
  • 7
  • 13
0
votes
2 answers

Python FTP-SSL / FTP-TLS: Verifying Public Certificate?

I'm using Python 2.7.5 (not 3.X) and I need to verify a FTPS (FTP-TLS) public certificate. That is, I want to verify it against the standard certificate authority, not a custom key. (Similar to HTTPS.) I see some options but I cannot get them to…
SilentSteel
  • 2,344
  • 1
  • 28
  • 28
0
votes
3 answers

transfer files from one webserver to another

I want to transfer files from a webserver to another approx 1GB, I have access to both server ftp and ftps. How can I do it with fast way.. I don't want to download files to my computer and then upload to new server. Thanks
Mandeep Singh
  • 2,016
  • 7
  • 19
  • 32
0
votes
1 answer

How do we analyze curl loader results?

The ftps.txt (output from curl-loader) file seems a lot confusing. How do we measure through put. Can some one guide me in these lines. Here is the sample output: RunTime(sec),Appl,Clients,Req,1xx,2xx,3xx,4xx,5xx,Err,T-Err,D,D-2xx,Ti,To 0, H/F ,…
user2450449
  • 71
  • 1
  • 4
0
votes
0 answers

FTPS throws a "The server committed a protocol violation" error when trying to connect

I'm developing a small application to upload a file via ftps implicit ssl but I've reached the point where it's trying to connect and I catch the error saying 'The underlying connection was closed: The server committed a protocol violation'. I have…
user2088244
  • 1
  • 1
  • 4
0
votes
2 answers

ColdFusion FTP Explicit TLS

Is it possible to do a ColdFusion FTP connection using Explicit TLS? I have searched on Google but to no avail.
Timothy Ruhle
  • 7,387
  • 10
  • 41
  • 67
0
votes
1 answer

Unable to connect to a server using fsockopen

Error in nginx error log : fsockopen(): SSL operation failed with code 1. OpenSSL Error messages: error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol in on line I am able to connect using FileZilla, WinSCP and also…
Jigar
  • 3,256
  • 1
  • 30
  • 51
0
votes
2 answers

Unable to fetch file from server using php

I need to fetch a file from a server (SFTP) using php code and save it in my local machine. I'm using ftp_ssl_connect() for this.The code is $local_file = '/var/www/filename.csv'; $server_file = '/foldername/filename.csv'; $ftp_connection =…
I'm nidhin
  • 2,592
  • 6
  • 36
  • 62
0
votes
1 answer

Unrecognized SSL message

Just confirmed that the FTPS server is indeed working using Filezilla. Quite puzzled with this exception. Code FTPSClient client = null; try { client = new FTPSClient(protocol, isImpicit); } catch…
bouncingHippo
  • 5,940
  • 21
  • 67
  • 107