Skip to content

UpdateCRL Service

Endi S. Dewata edited this page Aug 16, 2022 · 6 revisions

Overview

The UpdateCRL service can be used to force the update of the CRL.

Request

  • Operation: POST /ca/agent/ca/updateCRL

  • Authentication: Client certificate

Response

XML Response

$ curl \
    -d "xml=true" \
    --cert-type P12 --cert ~/.dogtag/pki-tomcat/ca_admin_cert.p12:Secret.123 \
    -sk \
    https://localhost.localdomain:8443/ca/agent/ca/updateCRL \
    | xmllint --format -
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<xml>
  <header>
    <crlIssuingPoint>MasterCRL</crlIssuingPoint>
    <crlUpdate>Scheduled</crlUpdate>
  </header>
  <fixed/>
  <records/>
</xml>
Clone this wiki locally