Description
-
Determines secure method used for FTPS.
Property type
-
A SecureMethodsEnum
enumeration. Determines which SSL version will be
negotiated.
Syntax
-
object.SecureMethod [= value]
The SecureMethod Property syntax has these parts:
| object |
An expression
evaluating to an object of type wodFtpDLX. |
| value |
A SecureMethods
enumeration, as described in settings. |
Settings
-
The settings for value are:
 |
SSLv1 |
1 |
SSL version 2. |
 |
SSLv3 |
2 |
SSL version 3. |
 |
SSLv23 |
3 |
SSL version 2 and 3. |
 |
TLSv1 |
4 |
TLS version 1. |
Remarks
-
When connecting to FTPS server (Protocol
property set to FTPSnodata, FTPSwithdata or FTPSimplicit) wodFtpDLX
will try to establish any SSL connection that is available,
identifying itself as SSL v23 - SSL client that supports both
SSLv2 (older protocol) and SSLv3 (newer protocol). This type of SSL
negotiation works in most cases. However, some servers force only
TLSv1 protocol and deny access to any client htat doesn't itentify
itself as TLSv1 specific. In such cases, you can set this property
to force wodFtpDLX only to use specified protocol type.
|