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

ftp4j: client.login returns Unrecognized SSL message, plaintext connection?

This is my code try{ TrustManager[] trustManager = new TrustManager[] { new X509TrustManager() { public X509Certificate[] getAcceptedIssuers() { return null; } public void checkClientTrusted(X509Certificate[] certs, String…
Marko Vranjkovic
  • 6,481
  • 7
  • 49
  • 68
0
votes
1 answer

URLConnection with FTPS

Is it possible to change the current sourcecode so I can use FTPS?: InputStream in = new URL(url).openStream(); OutputStream out = new URL("ftp://"+user+":"+password+"@"+server+""+dir+""+filename_real_string).openConnection().get …
user753676
0
votes
1 answer

Anyone get working FTPS/FTP::TLS Under Ruby 1.9.3?

I've tried several gems, examples, etc, and cannot get this working, the more promising gems were: double-bag-ftps and FTPFXP, I can connect but I cannot transfer files, in active or passive mode.. sample code with ftpfxp: @conn2 =…
kainlite
  • 1,024
  • 17
  • 35
0
votes
0 answers

Uploading files to FTPS via proxy

I need to upload files to FTPS via a proxy (to have a static IP which is allowed by FTPS server). Can I use .NET built-in classes? Maybe a code sample, I didn't find any good sample which would work with proxy. Or do I need a 3rd party…
net_prog
  • 9,921
  • 16
  • 55
  • 70
0
votes
3 answers

Connect to a FTPS server with mismatched server certificate using Net::FTPTLS

I am trying to connect via Net::FTPTLS to a Microsoft-based file server (IIS) which is configured to use FTP on port 22 and requires SSL. I connect via: require 'net/ftptls' ftp = Net::FTPTLS.new() ftp.connect('host.com',…
Emil Petkov
  • 375
  • 1
  • 4
  • 14
0
votes
0 answers

FTPS in iOS using NSOutputStream

I am Trying to upload a file on FTP, through SSL. My code works for normal connection but when used with SSL, it throws an error in the following method. The error is NSStreamEventErrorOccurred. -(void) stream:(NSStream *)aStream…
NNikN
  • 3,720
  • 6
  • 44
  • 86
0
votes
2 answers

Simple and Quick FTPS Site testing needed

I've got an FTPS site that I need to transfer a file to each night. My problem is that the site is hosted at a contractor's site (Contractor A) and the SSIS package that sends the file to the site was created/maintained by a another contractor…
Jeff Reddy
  • 5,551
  • 9
  • 55
  • 88
0
votes
2 answers

Rebex FTPS component takes too long with uploading files

I am trying to upload 230+ files on to an FTPS server using Rebex's FTP component. All the files TOTAL are like 5MB. so each is a few KB. I upload the file with this line of code: ftps.PutFiles( @"C:blablabla*.csv", @"blablafolder/test", …
ictict
  • 9
  • 2
0
votes
2 answers

I/O error (0):Error while downloading file from ftps using python 2.7 Unable to download file from FTPS

HI I am trying to download file from FTPS using python 2.7. Below is my code Here I am gating unexceptional IO error. While this code is running on UNIX and Python 2.7. I tried on windows with same code and its working fine. But on unix its not…
0
votes
1 answer

With IIS7, how can you enforce FTPS for some ftp user and not for others?

We have configured ftp within IIS7 to allow the use of SSL certificates. We need to ensure that most of your users use FTPS, but due to legacy system we cannot enforce all ftp users to use SSL. What would we need to do to achieve this?
Kieron
  • 23
  • 3
0
votes
1 answer

Connection Reset while Transfering files over FTPS using java

I am using Java(Zehon) to transfer files over FTPS. This is my code snippet. try { FTPsClient ftpClient = new FTPsClient(host, port,username ,password ,false,keyStorePath,keyStorePass); ftpClient.sendFile(absFilePath, ftpsFolder); }catch…
justin3250
  • 303
  • 3
  • 10
  • 19
0
votes
1 answer

Invalid Keystore Format while transferring files through FTPS protocol using java(zehon)

I am new to ftps.I am using the zehon library to transfer files using FTPS protocol. I have a verisigned certificate. Here is my code snippet: FTPsClient ftpClient = new FTPsClient(host, port,username ,password ,false,keyStorePath,keyStorePass); //…
justin3250
  • 303
  • 3
  • 10
  • 19
0
votes
2 answers

Supress or Ignore Non-Trusted Certificate With FTPS.exe (MoveIT Freely)?

One of the FTP accounts that I use recently began requiring secure FTP connections, which broke a script that I used to upload to it using a 'standard' FTP library. I've written a little batch file that will upload the 2 files via FTPS.exe (MoveIT…
user156662
-1
votes
1 answer

How to connect to FTPS (FTP Tls) server in python

how can I connect to an FTPS server and download files in it? Currently I am using the following code to retrieve some files in FTPS Server built with Docker. import ftplib import os from dateutil import parser from datetime import datetime def…
leop
  • 41
  • 7
-1
votes
1 answer

Python ftplib fails with FTPS but WinSCP works

I have following code: import pysftp user = ... password = ... host = ... port = 21 class FtpDirectory: def __init__(self): self.ftp = None def __enter__(self): self.ftp = FTP_TLS() self.ftp.debugging = 1 …
A. L
  • 131
  • 2
  • 12