Hi, please review this fix for an issue that I've discovered when working with test security/infra/java/security/cert/CertPathValidator/certification/ActalisCA.java.
It fails when the test tries to do the CRL verification of the certificate. It has issues in the LDAP implementation because of the certificate's name "cn=Actalis Authentication Root CA,o=Actalis S.p.A./03358520967,c=IT". The name contains a forward slash which is at the same time a compound separator in javax.naming/LDAP. So it needs some escaping. I also cleaned up some debugging code and removed/commented out unused fields and methods. Webrev: http://cr.openjdk.java.net/~clanger/webrevs/8224729.0/ Bug: https://bugs.openjdk.java.net/browse/JDK-8224729 Thanks Christoph