The path could not be validated because the end-entity certificate revocation checks failed. #44
-
--with-validation-info not working and internet was well connected. (Single document sign validation well working in Adobe Reader)
Need help.. pls! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
This error message explains the problem: your system time falls outside (in this case, before) the validation window of the CRL / OCSP responses that were fetched. With CRLs, that's a little unusual, but it's a somewhat common issue with OCSP responders. Usually, it's caused by clock drift (or perhaps bad timezone handling on the server end). There are two settings in the config file that may be useful to you:
Currently, these two options are only documented in |
Beta Was this translation helpful? Give feedback.
-
OK, but how to set up these above in the config file and how to create that config file? |
Beta Was this translation helpful? Give feedback.
-
They're both top-level settings in the general YAML config file; the same file as the one containing your PKCS#11 settings. I'd look something like time-tolerance: 100
retroactive-revinfo: true
pkcs11-setups:
... # PCKS#11 settings go here
# whatever other settings you need go here |
Beta Was this translation helpful? Give feedback.
This error message explains the problem: your system time falls outside (in this case, before) the validation window of the CRL / OCSP responses that were fetched. With CRLs, that's a little unusual, but it's a somewhat common issue with OCSP responders. Usually, it's caused by clock drift (or perhaps bad timezone handling on the server end).
There are two settings in the config file that may be useful to you:
time-tolerance
that takes a value in seconds (the default is 1…