I am using an EJBCA pki to store certificates ... I implemented connection with EJBCA using soap and rest interfaces . My problem now that i want to get the revocation status of certificates. I tried two methods : first one was with soap like below :
revocation_status = client.service.checkRevokationStatus(cert.issuer.rfc4514_string(), cert.serial_number)
and second one was using rest url but it didin't even worked :
/v1/certificate/{issuer_dn}/{certificate_serial_number}/revocationstatus
I have to mention that I am implementing all these using python I want to know , if someoneknows how to get the revocation status of certificates on EJBCA in an easy way . thank you very much .