SSLClientContext context = new SSLClientContext(); context.addClientCredentials(<CA certificate>,<Private Key CA>); context.addTrustedCertificate(<Server certificate>);
HttpsURLConnection servletConn = new HttpsURLConnection(<URL to my servlet>);
setvletConn.setSSLContext(context);
...
How can I obtain within my servlet the previous context to retrieve the certificates??
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
