Sample code for 30+ languages & platforms
PowerBuilder

Load P7B and Iterate Certificates

See more PEM Examples

Demonstrates how to load a .p7b containing one or more certificates access each of them.

Chilkat PowerBuilder Downloads

PowerBuilder
integer li_rc
long li_Success
oleobject loo_Pem
long li_NumCerts
long i
oleobject loo_Cert

li_Success = 0

//  This example assumes the Chilkat API to have been previously unlocked.
//  See Global Unlock Sample for sample code.

li_Success = 0

//  The Chilkat PEM class was introduced in v9.5.0.49.  
//  It requires the bundle to be unlocked, as shown above.
loo_Pem = create oleobject
li_rc = loo_Pem.ConnectToNewObject("Chilkat.Pem")
if li_rc < 0 then
    destroy loo_Pem
    MessageBox("Error","Connecting to COM object failed")
    return
end if

//  Load the .p7b from a file.
li_Success = loo_Pem.LoadP7bFile("../myCertFiles/myP7b.p7b")
if li_Success <> 1 then
    Write-Debug loo_Pem.LastErrorText
    destroy loo_Pem
    return
end if

//  Note: If the app already has the p7b loaded in memory, the LoadP7b method
//  may be called instead.  (see the online reference documentation)

//  Iterate over the certificates.
li_NumCerts = loo_Pem.NumCerts
i = 0

do while i < li_NumCerts

    loo_Cert = loo_Pem.GetCert(i)
    Write-Debug "Certificate " + string(i) + " : " + loo_Cert.SubjectDN
    destroy loo_Cert

    i = i + 1
loop


destroy loo_Pem