Sample code for 30+ languages & platforms
PowerBuilder

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 PowerBuilder Downloads

PowerBuilder
integer li_rc
integer li_Success
oleobject loo_Ftp

li_Success = 0

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

loo_Ftp = create oleobject
li_rc = loo_Ftp.ConnectToNewObject("Chilkat.Ftp2")
if li_rc < 0 then
    destroy loo_Ftp
    MessageBox("Error","Connecting to COM object failed")
    return
end if

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

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

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

// Connect and login to the FTP server.
li_Success = loo_Ftp.Connect()
if li_Success <> 1 then
    Write-Debug loo_Ftp.LastErrorText
    destroy loo_Ftp
    return
else
    // LastErrorText contains information even when
    // successful. This allows you to visually verify
    // that the secure connection actually occurred.
    Write-Debug loo_Ftp.LastErrorText
end if

Write-Debug "Secure FTP Channel Established!"

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

li_Success = loo_Ftp.Disconnect()


destroy loo_Ftp