log.info("Inbound message transport did not contain an X509Credential, "
+ "skipping client certificate authentication");
return;
}
X509Credential requestCredential = (X509Credential) peerCredential;
if (log.isDebugEnabled()) {
try {
log.debug("Attempting to authenticate inbound connection that presented the certificate:");
log.debug(Base64.encodeBytes(requestCredential.getEntityCertificate().getEncoded()));
} catch (CertificateEncodingException e) {
// do nothing
}
}
doEvaluate(requestCredential, messageContext);