Sample code for 30+ languages & platforms
AutoIt

Connect to FTP Through an HTTP Proxy

See more FTP Examples

Demonstrates connecting through an HTTP proxy using HttpProxyHostname, HttpProxyPort, HttpProxyUsername, HttpProxyPassword, HttpProxyAuthMethod, and HttpProxyDomain.

Background: Many corporate networks force outbound traffic through an HTTP proxy, which reaches the FTP control connection via the CONNECT method — so the proxy must permit CONNECT to the FTP port. HttpProxyAuthMethod is Basic or NTLM, with HttpProxyDomain supplying the Windows domain for NTLM. This is distinct from a traditional FTP proxy, which speaks FTP itself.

Chilkat AutoIt Downloads

AutoIt
Local $bSuccess = False

$oFtp = ObjCreate("Chilkat.Ftp2")

$oFtp.Hostname = "ftp.example.com"
$oFtp.Username = "myFtpLogin"

;  The HTTP proxy through which the FTP control connection is made.  Common ports are 8080 and
;  3128.
$oFtp.HttpProxyHostname = "proxy.example.com"
$oFtp.HttpProxyPort = 8080

;  Proxy authentication, if required.  HttpProxyAuthMethod is "Basic" or "NTLM"; HttpProxyDomain
;  is the Windows domain used for NTLM.
$oFtp.HttpProxyUsername = "myProxyLogin"
$oFtp.HttpProxyPassword = "myProxyPassword"
$oFtp.HttpProxyAuthMethod = "NTLM"
$oFtp.HttpProxyDomain = "CORP"

;  Normally you would not hard-code the password in source.  You should instead obtain it
;  from an interactive prompt, environment variable, or a secrets vault.
$oFtp.Password = "myPassword"

$bSuccess = $oFtp.Connect()
If ($bSuccess = False) Then
    ConsoleWrite($oFtp.LastErrorText & @CRLF)
    Exit
EndIf

ConsoleWrite("Connected through the HTTP proxy." & @CRLF)

$bSuccess = $oFtp.Disconnect()
If ($bSuccess = False) Then
    ConsoleWrite($oFtp.LastErrorText & @CRLF)
    Exit
EndIf