Programming with FTP OLE Automation
TLSImplicitConnection property
Syntax |
Object.TLSImplicitConnection |
Data type |
Boolean |
Returns (first syntax line) or specifies (second syntax line) whether SSL/TLS connections use implicit or explecit security. When this property is False (the default) the FTP client uses explicit security. This requires that the FTP client issue a specific command (AUTH TLS) to the FTP server after establishing a connection. If the server gives a success response, the client begins the TLS negotiation. The default FTP server port (21) is used.
When this property is True, the Reflection FTP Client uses Implicit security. Implicit security automatically begins with an SSL connection as soon as the FTP client connects to the server; no AUTH TLS command is sent prior to the TLS negotiation. By default, the Reflection FTP Client uses port 990 for Implicit connections.
The default is False.
None