Identifying the SSL Key ID (GetSSLKeyID)

Use the ICIClientSettings interface GetSSLKeyID method to identify or retrieve the SSL key ID for the client. Refer to User Connection Protocols for an illustration of how this and other Client Settings Interface Methods and Properties can be accessed in the Administrator interface.

This method is available in EFT Server 5.1 and later.

Signature:

HRESULT GetSSLKeyID(

[out, optional] VARIANT_BOOL *pInherited,

[out, retval] BSTR *pVal);

Example:

Dim strUser:strUser = "test"

Set oUserSettings = oSite.GetUserSettings(strUser)

Dim strSSLEnabled: strSSLEnabled=false

oUserSettings.GetSSLKeyID(strSSLEnabled)

Dim strType: strType = oUserSettings.GetSSLKeyID()

WScript.Echo "SSL Enabled: " & strSSLEnabled

WSCript.Echo "SSL Password type: " & strType