Re: Client Auth / Certificates

2003-06-26 Thread Ortwin Glück
[EMAIL PROTECTED] wrote: It is possible to create a standard JSSE impl, but only for 1.4 JDK. In previous JDK's the required classes were of the com.sun.net.ssl variety, which of course is ugly. There is no cross-vm solution for JDKs prior to 1.4 that I am aware of. - Matt Secoske Unfortunat

Re: Client Auth / Certificates

2003-06-26 Thread secoskem
t;[EMAIL PROTECTED]> 06/26/2003 10:07 AM Please respond to "Commons HttpClient Project" To: Commons HttpClient Project <[EMAIL PROTECTED]> cc: Subject:Re: Client Auth / Certificates It sure would be useful however I am not sure if it is possibl

Re: Client Auth / Certificates

2003-06-26 Thread Ortwin Glück
It sure would be useful however I am not sure if it is possible. I never used a standard JSSE implementation. We used SSLava in our projects (because it's supposed to be faster) and SSLava is does not have a JSSE interface. So I wrote a SSLSocketFactory that configured SSLava to use a specific

Re: Client Auth / Certificates

2003-06-26 Thread Adrian Sutton
On Thursday, June 26, 2003, at 11:09 PM, [EMAIL PROTECTED] wrote: Ortwin - Correct. I have completed the code using javax.net.ssl.HttpsURLConnection (Creating a special keymanager (for my crypto framework), setting up the SSLContext, creating SSLSocketFactory, etc.) . I was just hoping that

Re: Client Auth / Certificates

2003-06-26 Thread secoskem
. Thanks, Matt Secoske Ortwin Glück <[EMAIL PROTECTED]> 06/26/2003 02:57 AM Please respond to "Commons HttpClient Project" To: Commons HttpClient Project <[EMAIL PROTECTED]> cc: Subject: Re: Client Auth / Certificates [EMAIL PROTECTED]

Re: Client Auth / Certificates

2003-06-26 Thread Ortwin Glück
[EMAIL PROTECTED] wrote: I am looking for a way to specify a particular client SSL certificate for Client Authenticated SSL. This is usually done by writing a SSLSocketFactory that creates Sockets with the Client Cert attached. ---

Re: Client Auth / Certificates

2003-06-25 Thread Oleg Kalnichevski
Matt, No, there's no such mechanism in place. However, there's a way provide a custom SSL implementation that meets your specific needs. Have a look at the HttpClient SSL guide at the following location: http://jakarta.apache.org/commons/httpclient/sslguide.html There's a section on customising