I am using edtPro version to connect to an ftp server that provides an connection method using Https protocol. It also requires an SSL Client certificate
The one example I found on the website:
http://www.enterprisedt.com/products/ed ... ghttp.html
My code (in Python):
ftpConnection = SecureFTPConnection()
ftpConnection.ServerAddress = "https://****"
ftpConnection.ServerPort = 443
ftpConnection.Protocol = FileTransferProtocol.HTTP
ftpConnection.UserName=self._username
ftpConnection.Password=self._password
ftpConnection.ServerValidation = 0
ftpConnection.ClientCertificate = SSLFTPCertificate.CreateFromPFX("****","****")
ftpConnection.Connect()
ftpConnection.ChangeworkingDirectory("****");
ftpConnection.DownloadFile("****","****")
But I get a "Bad request (400)". If I remove the "https://" from the serverAddress, I get a "underlying connection closed unexpectedly". Any idea why? Thanks.