Package uk.ac.soton.itinnovation.grid.comms.client

Examples of uk.ac.soton.itinnovation.grid.comms.client.CertificateFileTrustValidator


        //create CertificateTrustValidator trusting certificates in directory TrustedCertificates
        try {
            trustedCerts = new File(TRUSTED_CERTIFICATES_PATH);
            //we will trust all certificates within this directory
            validator = new CertificateFileTrustValidator(trustedCerts);
        } catch (Exception ex) {
            throw new RuntimeException(" couldnt find the TrustedCertificates directory", ex);
        }

        //this one trusts anyone
View Full Code Here

TOP

Related Classes of uk.ac.soton.itinnovation.grid.comms.client.CertificateFileTrustValidator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.