545 questions
Score of 2
1 answer
130 views
Can't Upload to FTPS using Python's Ftplib
I have a script that I want to run daily via Cron that would first download files and upload files from a local directory to FTPS server.
I have created this script:
import ftplib
import ssl
import ...
Score of 0
0 answers
99 views
FTPS Upload Freezes After Completion with libcurl in C++ (Error 425)
I’m using libcurl in C++ to upload a file via FTPS. The upload completes successfully (all bytes sent), but the connection freezes, and the server returns:
> 425 Data channel timed out due to not ...
Score of 2
1 answer
118 views
Update z/OS Password Using PHP cURL Module
I'm trying to change a password on a z/OS mainframe that I make an FTPS connection to. Working with a legacy codebase and I'm trying to get rid of the exec calls to cURL. You'll notice all the ...
Score of 0
1 answer
120 views
FTP List, Download, Upload from az function using python
am getting this error 8:51:19 AM | Trace
@8F596749-638656982249418103
Error downloading or archiving file: EOF o...rred in violation of protocol (_ssl.c:2706), when am sending request to the az ...
Score of 1
0 answers
199 views
ftp_put() warning data_accept: failed to retrieve the existing SSL session
I am trying to upload a file via ftps to a server by doing this:
$connectionId = ftp_ssl_connect($server, 21, 15);
if ($connectionId === false) {
throw new Exception("Could not connect to ...
Score of 0
1 answer
280 views
How to manually deploy a NodeJS application to an azure wep app service (linux) via FTPS
I am trying to manually deploy payloadcms to azure web app services. I have locally run "npm run build" and created the build and dist folders. I then ftps into our server and copy the build ...
Score of 0
1 answer
309 views
Indy TIdFTP TSL1.2 Error 534 Protection level C not allowed
I have an older Delphi project where in we use the TIdFTP client. I have been unable to get it to work there so I have started a side project where I can test the component. I am also running a ...
Score of -1
1 answer
115 views
Using Twisted to implement implicit FTPS server
I am writing an FTP server using the Python framework Twisted. Twisted has its own plain FTP implementation - but it doesn't support FTPS. I've noticed that most clients connect and immediately issue ...
Score of 2
1 answer
321 views
nlst times out while connecting FTPS server with Python
I can login to with Total Commander to
server: ftps://publishedprices.co.il
username: "XXXX"
password empty
And with
lftp -u XXXX: publishedprices.co.il
But when I tried to login and get ...
Score of 0
0 answers
568 views
TLS 1.3 support with FTPS on IIS on Windows Server 2022
We are unable to get TLS 1.3 to work with FTPS on IIS on a Windows Server 2022. FTPS on IIS has been working fine for many years, and it relies (to my knowledge) on the Windows Server's schannel for ...
Score of 0
2 answers
90 views
how to move file from inbound remote directory to another remote directory using transactionSynchronizationFactory
I have a requirement is to read file from a FTP remote directory insert payload values into database and then move file from remote directory /in to remote directory /archive of same FTP server.
I am ...
Score of 1
1 answer
60 views
Spring Integration java.io.IOException: Unable to determine system type - response: 550 Permission denied
I was getting Unable to determine system type - response: 550 Permission denied error while trying to poll files from ftp remote server.
Springboot version: 3.2.1
My FTPS session factory Java ...
Score of 2
1 answer
90 views
transactionSynchronizationFactory in combination with database transaction not working
I am expecting my code to receive the file based on poller once it is created in remote directory then do a database insert and then move the file to another remote directory.
So far file is polled ...
Score of 1
1 answer
218 views
Getting EOFError from retrlines() when using FTP_TLS from python ftplib
This one is not making any sense to me. Apologies for my poor python, I'm relatively new to the language.
The pertinent part of my program looks like:
from ftplib import FTP, FTP_TLS
...
try:...
Score of 0
0 answers
175 views
RCurl cannot get files from Implicit FTP over TLS server - Access denied error 530
I'm in R trying to pull csv data from an FTP server which "Requires implicit FTP over TLS". With some help from this answer I was able to connect to the server using the following code:
# ...