CertificateFactory fact = CertificateFactory.getInstance("X.509");
for (int i = 0; i < CRL_URLS.length; i++) {
URL certUrl = new URL(BASE_URL + CRL_URLS[i]);
try {
InputStream is = certUrl.openStream();
CRL crl = fact.generateCRL(is);
assertNotNull("The CRL in \"" + certUrl.toExternalForm()
+ "\" were not parsed correctly", crl);
} catch (IOException e) {
// the certificate could not be found, skip it
} catch (CRLException e) {