0 votes

The process I need to replicate was done with the following code...

MySite.Host = "web.example.com"
MySite.Protocol = "SFTP"
MySite.Port = 22 && needs to be port 22 for SFTP
MySite.Retries = 30
MySite.Delay = 30
MySite.MaxConnections = 20
MySite.TransferType = "AUTO"
MySite.DataChannel = "DEFAULT"
MySite.AutoRename = "OFF"
MySite.Login = "xxxftp"
MySite.Password = "xxxxxxxxxx"
MySite.SocksInfo = ""
MySite.ProxyInfo = ""

MySite.Option("ThrowError")=.F.
MySite.Option("AutoCloseMethod")=1
MySite.Option("AutoCloseDelay")=5
MySite.RemoteFolder = "/opt/cms/dealer_input"

The only option I am seeing is SSL and I am told it is not the same.
Any suggestions?

by (1.3k points)

1 Answer

0 votes

SFTP is a different protocol than FTP, they are not related.

Ftp.dll supports FTP and FTPS (FTP over SSL/TLS) protocols only.

by (297k points)
Is SFTP integration into FTP.dll planned?
...