Sets the client certificate that Silk Performer presents the secure server in behalf on the real client's certificate. To use a client certificate, it must be exported from the Web browser and imported into the Silk Performer certificate store first.
WebAPI.bdh
SslSetClientCert( in sCertFile : string ): boolean;
true if successful
false otherwise
Parameter | Description |
---|---|
sCertFile | Certificate file (.pem) located in the Silk Performer user data directory. To copy a client certificate into the user data directory, it has to be exported from the Web browser. |
dcltrans transaction TSecureHTTP begin SslSetEncryption(SSL_VERSION_SSL3, SSL_CIPHERS_SSLv3); SslSetClientCert("Sunny.pem"); WebUrl("https://www.company.com"); end TSecureHTTP;
WebSecure01.bdf, WebSecure02.bdf