Hi!

I was playing around with Tomcat 4.0.1 and couldn't get the client certificates
from apache through mod_webapp. So I tried Tomcat 4.0.2 b2 and the build from
January 27. I even compiled a new mod_webapp (1.0.2-tc402).

Then I tried ajp13 and mod_jk. This is working fine after I changed my code
(working in Tomcat 3.2x) from

String certAttribute = "javax.servlet.request.X509Certificate";
X509Certificate certificate =
(java.security.cert.X509Certificate)request.getAttribute(certAttribute);

To version for Tomcat 4:
String certAttribute = "javax.servlet.request.X509Certificate";
X509Certificate certificate[] =
(java.security.cert.X509Certificate[])request.getAttribute(certAttribute);

As I think I missed something in the configuration of mod_webapp, I wonder, if
somebody has a working configuration for getting client certificates with
mod_webapp, apache 1.3 and mod_ssl. 

--
To unsubscribe:   <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>

Reply via email to