Discuss this help topic in SecureBlackbox Forum

TElHTTPSServer.SSLClientAuthentication

TElHTTPSServer     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Specifies whether client authentication (certificate request) is enabled.

Declaration

[C#]
    bool SSLClientAuthentication;

[VB.NET]
    Property SSLClientAuthentication As Boolean

[Pascal]
    property SSLClientAuthentication : boolean;

[C++]
    bool get_SSLClientAuthentication();
    void set_SSLClientAuthentication(bool Value);

[PHP]
    bool get_SSLClientAuthentication()
    void set_SSLClientAuthentication(bool $Value)

[Java]
    boolean getSSLClientAuthentication();
    void setSSLClientAuthentication(boolean Value);

Description

    This property defines whether the server should request client's certificate. If the client doesn't have a certificate, server actions depend on SSLAuthenticationLevel property value. If the client has a certificate, the OnCertificateValidate event is fired.
    Client authentication is used very rarely. Use this option in case you are sure all clients have certificates.

See also:     SSLAuthenticationLevel     OnCertificateValidate    

Discuss this help topic in SecureBlackbox Forum