Discuss this help topic in SecureBlackbox Forum

TElHTTPSServer.SSLForceCertificateChain

TElHTTPSServer     See also     


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


Specifies whether the complete certificate chain should be sent to the client instead of a single end-entity server certificate.

Declaration

[C#]
    bool SSLForceCertificateChain;

[VB.NET]
    Property SSLForceCertificateChain As Boolean

[Pascal]
    property SSLForceCertificateChain : boolean;

[C++]
    bool get_SSLForceCertificateChain();
    void set_SSLForceCertificateChain(bool Value);

[PHP]
    bool get_SSLForceCertificateChain()
    void set_SSLForceCertificateChain(bool $Value)

[Java]
    boolean getSSLForceCertificateChain();
    void setSSLForceCertificateChain(boolean Value);

Description

    This property defines whether the server should send the complete certificate chain to the client. If this property is set to True, TElHTTPSServer tries to find the longest certificate chain in the storage specified by CertStorage property. If this chain is found, it is sent to the client. Otherwise, the first suitable end-entity certificate is sent.

See also:     CertStorage    

Discuss this help topic in SecureBlackbox Forum