For information about Globalscape, visit www.globalscape.com. |
Use the Protocol property to set or retrieve the value for the protocol type.
Syntax
String Object.Protocol
Parameters
"FTP" |
File Transfer Protocol |
FTP using SSL in explicit mode (standard port 21) |
|
"FTPS_IMPLICIT" |
Extension of FTP using SSL -- FTP using SSL in implicit mode (specific port) |
Secure protocol based on SSH2 |
|
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. |