Can not get SSL Client Certificate

2003-09-03 Thread Elif Akten
Hi, I have been trying to get SSL client certificate during a client authenticated SSL session. I am using Apache 2.0 with Tomcat 4.1.27. Everything works succesfully: when I want to open a SSL protected JSP page my browser asks for my client certificate and verifies it. But when I try to get

Re: Can not get SSL Client Certificate

2003-09-03 Thread John Turner
First thing I would try is putting your LoadModule line ABOVE every line that uses Jk*, such as: JkExtractSSL On JkHTTPSIndicator HTTPS JkSESSIONIndicator SSL_SESSION_ID JkCIPHERIndicator SSL_CIPHER JkCERTSIndicator SSL_CLIENT_CERT As positioned in your post, the lines shown above would have no

Re: Can not get SSL Client Certificate

2003-09-03 Thread Bill Barker
Try: X509Certificate [] certs = (X509Certificate [])request.getAttribute(javax.servlet.request.X509Certificate); Elif Akten [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, I have been trying to get SSL client certificate during a client authenticated SSL session. I