PowerBuilder
PowerBuilder
Set an IMAP TLS Client Certificate from a PFX File
See more IMAP Examples
Demonstrates the Chilkat Imap.SetSslClientCertPfx method, which supplies a TLS client certificate and private key from a PKCS #12/PFX file. The first argument is the .pfx or .p12 file path and the second is its password. Call it before connecting.
Note: The certificate path is relative to the application's current working directory. Supply the path to your own certificate file.
Background: A PFX (PKCS #12) file bundles a certificate together with its private key in a single password-protected file — the format Windows and many corporate PKI tools export. This is the counterpart to
SetSslClientCertPem: use it when your credentials are packaged as one .pfx rather than as separate PEM files.Chilkat PowerBuilder Downloads
integer li_rc
integer li_Success
oleobject loo_Imap
string ls_PfxPassword
li_Success = 0
// Demonstrates the Imap.SetSslClientCertPfx method, which supplies a TLS client certificate
// and private key from a PKCS #12/PFX file. The 1st argument is the .pfx/.p12 file path and
// the 2nd is its password. It must be called before connecting.
loo_Imap = create oleobject
li_rc = loo_Imap.ConnectToNewObject("Chilkat.Imap")
if li_rc < 0 then
destroy loo_Imap
MessageBox("Error","Connecting to COM object failed")
return
end if
loo_Imap.Ssl = 1
loo_Imap.Port = 993
// The PFX password is not hard-coded in source. Insert code here to obtain it from an
// interactive prompt, environment variable, or a secrets vault.
// Provide the PFX client certificate BEFORE connecting.
li_Success = loo_Imap.SetSslClientCertPfx("qa_data/client.pfx",ls_PfxPassword)
if li_Success = 0 then
Write-Debug loo_Imap.LastErrorText
destroy loo_Imap
return
end if
li_Success = loo_Imap.Connect("imap.example.com")
if li_Success = 0 then
Write-Debug loo_Imap.LastErrorText
destroy loo_Imap
return
end if
li_Success = loo_Imap.Login("user@example.com","myPassword")
if li_Success = 0 then
Write-Debug loo_Imap.LastErrorText
destroy loo_Imap
return
end if
li_Success = loo_Imap.Disconnect()
if li_Success = 0 then
Write-Debug loo_Imap.LastErrorText
destroy loo_Imap
return
end if
destroy loo_Imap