Setting Protocols

Use the Protocol property to set or retrieve the value for the protocol type.

Syntax

String Object.Protocol

Parameters

"FTP"

File Transfer Protocol

"FTPS"

FTP using SSL in explicit mode (standard port 21)

"FTPS_IMPLICIT"

Extension of FTP using SSL -- FTP using SSL in implicit mode (specific port)

"SFTP"

Secure protocol based on SSH2

"FTP_SKEY_MD4"

Secure one time password login using MD4

"FTP_SKEY_MD5"

Secure one time password login using MD5

"HTTP"

Hypertext Transfer Protocol

"HTTPS"

HTTP with SSL

Example

Set MySite = CreateObject("CuteFTPPro.TEConnection")

MySite.Protocol = "FTPS_IMPLICIT "

MySite.Host = "ftp.ftp.net" >

MySite.Port = 990

MySite.Login = "username"

MySite.Password = "password"

MySite.Connect

 

You can find more options for using SSL in ClearDataChannel.