Sample code for 30+ languages & platforms
Visual FoxPro

FTP/SSL (AUTH SSL, TLS)

See more FTP Examples

Demonstrates how to connect using AUTH SSL. By setting the AuthTls property, a secure FTP connection can be established using either SSL 3.0 or TLS 1.0. The Chilkat component will automatically choose whichever is supported by the FTP server during the secure channel establishment. The FTP control port remains at the default (21). Upon connection, the channel is converted to a secure channel automatically. All control messages and data transfers are encrypted.

Chilkat Visual FoxPro Downloads

Visual FoxPro
LOCAL lnSuccess
LOCAL loFtp

lnSuccess = 0

* This example requires the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.

loFtp = CreateObject('Chilkat.Ftp2')

loFtp.Hostname = "ftp.something.com"
loFtp.Username = "test"
loFtp.Password = "test"

* Establish an AUTH SSL secure channel after connection
* on the standard FTP port 21.
loFtp.AuthTls = 1

* The Ssl property is for establishing an implicit SSL connection
* on port 990.  Do not set it.
loFtp.Ssl = 0

* Connect and login to the FTP server.
lnSuccess = loFtp.Connect()
IF (lnSuccess <> 1) THEN
    ? loFtp.LastErrorText
    RELEASE loFtp
    CANCEL
ELSE
    * LastErrorText contains information even when
    * successful. This allows you to visually verify
    * that the secure connection actually occurred.
    ? loFtp.LastErrorText
ENDIF

? "Secure FTP Channel Established!"

* Do whatever you're doing to do ...
* upload files, download files, etc...

lnSuccess = loFtp.Disconnect()

RELEASE loFtp