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

unix FTPS cURL Directory Creation Failed

I want to create a folder on a FTPS and then upload a file into that newly created folder. Please can anyone help me out? Below is a truncated script I am using ftp_resp=`#lftp < curl <
TEKA
  • 23
  • 5
0
votes
1 answer

Does JSch allow to understand that I provided wrong credentials?

I am novice with JSch library. I need to validate login credentials. How can I make it? connect and check response code? P.S. I cannot find information in doc.
gstackoverflow
  • 36,709
  • 117
  • 359
  • 710
0
votes
2 answers

How to make FTPS connection in ios

How do I connect to FTP server over TLS? I want to make FTPS connection to FTP server, so that username and password are encrypted. I am unable to find any API for this. I have used GetController/ PutController classes in SimpleFTPSample provided in…
K_Mohit
  • 528
  • 3
  • 17
0
votes
2 answers

Send file FTP over SSL with custom port number

Possible Duplicate: Warning: mysql_fetch_row() expects parameter 1 to be resource I have asked the question before but in a different manner. I am trying taking form data, compiling into a temporary CSV file and trying to send over to a client…
JM4
  • 6,740
  • 18
  • 77
  • 125
0
votes
1 answer

Connect to Server via PHP and Write File

I am trying to connect to a server via php and write a PDF file to a folder that I dynamically create. This is the code I am using:
Sal Vadala
  • 17
  • 3
0
votes
2 answers

FTP Connect to servers that use either Implict SSL or SSH using Freepascal & Synapse

I have asked this question at the FPC forums (here) but answers are not forthcoming so I hoped someone here could help. I have an Apple Mac server that has FTP enabled via SSH connection using port 22. I can connect to it fine using the FireFTP…
Gizmo_the_Great
  • 979
  • 13
  • 28
0
votes
1 answer

FTPS | connection closes abruptly after entering passive nide

I would like to connect to an FTP destination and write a file to it. FTP abruptly closes after entering PASV mode. There is nothing wrong with the FTP server setting as such. I am not really sure what I can fix on the FTP server to fix this…
lonelymo
  • 3,972
  • 6
  • 28
  • 36
0
votes
0 answers

How to create an encrypted connection with FTPS

I have to exchange some file via FTPS... I have created a really simple FTP server on IIS where I enable anonymous access and SSL is required. Everything works but I have some doubt about security.. Here the code: FtpWebRequest ftpRequest =…
Simone
  • 2,304
  • 6
  • 30
  • 79
0
votes
1 answer

FTPSClient raise an exception when trying to login() after logout()

I need to write code in Java which connects to the list of servers using FTP over SSL protocol and get some files from it. Every server has list of logins and passwords. I need to connect to server using every login in rotations. Something like…
Toro Boro
  • 377
  • 5
  • 16
0
votes
1 answer

FTPS download using command line or vb / vba?

I've tried everything I can think of - winscp, aria2c, psftp, windows ftp client, etc., and I can't quite get this. Amazingly, this is all I need to do: Download these 2 files (i have the username and password) - it is FTPS protocol. …
Isaac
  • 351
  • 1
  • 4
  • 21
0
votes
1 answer

can not connect to FTPS (explicit) server with java?

I use this code to connect to ftps with explicit encryption String host = "10.21.13.66"; int port = 21; String username = "user"; String password = "pass"; try { FTPSClient ftpClient = new…
Narges
  • 1,345
  • 6
  • 14
  • 29
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
0
votes
1 answer

Java code for connect alfresco through ftps connection

When I try to connect our alfresco through SFTP it is not able to connect alfresco. It hangs the explorer and no error goes in the logger file also. public void FTPTest()throws SocketException, IOException, NoSuchAlgorithmException { FTPSClient…
0
votes
1 answer

Batch file's Core FTP line is Not running during Scheduled Task. Works if started Manually

I have a simple batch file which needs to be run weekly to upload some files via Core FTP. I'm using the free version of Core FTP LE. MySavedProfile is the Site Name of the saved profile I created using Core FTP's site Manager. The profile contains…
0
votes
1 answer

How to make FTPS data channel encrypted

I am new to FTP. I have a problem with my FTPSClient program. Only control channel is encrypted. I need both the control and data channel to be encrypted. public boolean login(String usrName,char[] passwd){ try { ftpClient = new…