Questions tagged [ftpes]
11 questions
29
votes
4 answers
FTPES - FTP over explicit TLS/SSL in Python
I need a python client to do FTPES (explicit), does anyone has experience with any python package that can do this.
I am not able to do this in python, but can connect to FTP server using tools like FileZilla
Thanks

user424060
- 1,545
- 3
- 20
- 29
5
votes
1 answer
Protocol FTPES not supported or disabled in libcurlFile upload error
Due to security reason my host doesn't support FTP plain text login, so they have suggested me to use ftpes protocol to connect the server. Based on this I have created a script but I am getting "Protocol FTPES not supported or disabled in…

Techiescorner
- 791
- 2
- 12
- 25
2
votes
1 answer
java.net.UnknownHostException: url
I have written a java file which opens a HTTPS connection to a server that has given restricted access to call its web services from our unix server.
So we are able to ping the server ip, telnet the server ip with port 443 all successfully so the…

Rache
- 217
- 1
- 7
- 20
1
vote
0 answers
How to connect to a FTP server over TLS (explicit) and upload a file to it [C#]
How would you go about connecting to an FTP server using the FTPES protocol and then upload a file?
I found this online:
using (WebClient client = new WebClient())
{
client.Credentials = new NetworkCredential(ftpUsername, ftpPassword);
…

dobson
- 461
- 6
- 14
1
vote
0 answers
AS3: negotiating FTP-ES connection
I'm trying to modify an ActionScript 3 FTP library to support explicit secure (FTP-ES) connections.
With FTP-ES, the client initially makes an insecure FTP connection, then explicitly asks the server to switch to a secure SSL/TLS connection.
Right…

Kevin
- 269
- 3
- 13
1
vote
1 answer
On some computers Indy FTPES client returns "SSL is not available on this server"
I have a strange problem. I'm using Indy to implement FTPES connectivity in my application and connecting to the same server from my application works on some computers but not on all, returning "SSL is not available on this server".
I'm using DLLs…

Kaitnieks
- 922
- 1
- 8
- 15
0
votes
1 answer
Connect to Explicit FTPS (FTPES) with Python (error)
I'm uploading a file ftp and keep getting a "ssl.SSLEOFError: EOF occurred in violation of protocol (_ssl.c:2756)" error.
class MyFTP_TLS(ftplib.FTP_TLS):
"""Explicit FTPS, with shared TLS session"""
def ntransfercmd(self, cmd,…

Eric Dannewitz
- 1
- 1
0
votes
1 answer
PHP: ftp_login fails with "failed to create the SSL context"
I'm trying to upload a file to a remote FTP server (which requires FTPES) using PHP. The script I've written works locally, but on the live server ftp_login() returns false and the following warnings appear in the error log:
PHP Warning: …

Tim Fountain
- 33,093
- 5
- 41
- 69
0
votes
0 answers
FTPSClient.listFiles() not working for NonStop/Tandem System
I am writing a small FTPS client that will download Enscribe files from NonStop/Tandem and will be processes in Windows. I am using the Apache Commons Net API to achieve this.
I am able to download and upload files from and to NonStop/Tandem. But I…

Ajitav Dutta
- 99
- 1
- 11
0
votes
1 answer
[Atom][Remote-ftp] Unable to connect ftps/ftpes
Below two issues I was facing while trying to create ftps connection.
421 Sorry, cleartext sessions are not accepted on this server.
Uncaught No protocol found in connection credential
It was solved after some config changes, which I'm putting in…

Sanjay Verma
- 1,390
- 22
- 40
0
votes
1 answer
fopen() for FTP Explicit SSL/TLS
How can I use fopen("ftp://$user:$pass@$domain/test.php", "wb"); for FTP Explicit SSL/TLS ?
Something like fopen("ftpes://$user:$pass@$domain/test.php", "wb");.
ftpes:// is not listed in Supported Protocols and Wrappers
From Filezilla Client, I can…

Jigar
- 3,256
- 1
- 30
- 51