Discuss this help topic in SecureBlackbox Forum

TElSSLServer.ForceCertificateChain

TElSSLServer     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 ForceCertificateChain;

[VB.NET]
    Property ForceCertificateChain As Boolean

[Pascal]
    property ForceCertificateChain : boolean;

[C++]
    bool get_ForceCertificateChain();
    void set_ForceCertificateChain(bool Value);

[PHP]
    bool get_ForceCertificateChain()
    void set_ForceCertificateChain(bool $Value)

[Java]
    boolean getForceCertificateChain();
    void setForceCertificateChain(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, TElSSLServer 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