I am trying to download files from a FTP site inside my production environment. The FTP site has been assigned with a certificate (pfx). The FTP port is 21.
Due to this certificate I am unable to download the content using FTP task in SSIS.
I tried using script task however I got the same error that ftp cannot accomplish the connection due to certificate.
I also tried with SFTP component but that gave me a error shown below
[Execute: ] Error: Error: Unable to List: Socket read operation has timed out
at SSIS.Extensions.SFTP.SFTPConnection.ThrowException(String Message, Exception ex) at SSIS.Extensions.SFTP.SFTPConnection.ListFiles(String remotePath) at SSIS.Extensions.SFTPTask.SFTPTask.Execute(Connections connections, VariableDispenser variableDispenser, IDTSComponentEvents componentEvents, IDTSLogging log, Object transaction)
I googled the error and found out that SFTP does not use TLS/SSL (neither implicit nor explicit). Explicit/Implict TLS/SSL is used with FTP from the post
SSIS SFTP : How to resolve "Unable to Upload: Socket read operation has timed out"?
Is there a way to connect to FTP that has a certificate associated with it using SSIS?