Re: Apache SSL again... those variables are getting me mad!

2003-12-19 Thread Mark W. Webb
I use mod_jk with tomcat 4.1.x and apache from source. I have not had any problems to date. Try mod_jk and see if that helps. Federico Fernandez Cruz wrote: Yes! It returns null. The servlet (jsp) that executes this code is running in Tomcat (obviously!) And the whole web application is ma

Re: Apache SSL again... those variables are getting me mad!

2003-12-19 Thread Federico Fernandez Cruz
Yes! It returns null. The servlet (jsp) that executes this code is running in Tomcat (obviously!) And the whole web application is mapped from apache to tomcat. The steps are the following: 1.- https:///UserMan (UserMan is a location in Apache that is mapped to my web application that is ca

Re: Apache SSL again... those variables are getting me mad!

2003-12-19 Thread Federico Fernandez Cruz
Thanks Bill! I will try but... I thought that mod_jk2 was the most advanced and that it was recommended for Apache 2. Moving to mod_jk 1.2.5 is a step back, isn't it? Thanks again! Bill Barker wrote: Can you try with mod_jk 1.2.5? I really don't know mod_jk2 that well to know if/how it s

Re: Apache SSL again... those variables are getting me mad!

2003-12-18 Thread Bill Barker
Can you try with mod_jk 1.2.5? I really don't know mod_jk2 that well to know if/how it sends the SSL attributes. "Federico Fernandez Cruz" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Sure! This is getting personal... ;-) Apache and Tomcat will not be my > friends anymore! :-D >

Re: Apache SSL again... those variables are getting me mad!

2003-12-18 Thread Mark W. Webb
Does the following return null? If so, your ssl.conf may be messed up. Is the servlet that executes this code running over SSL? java.security.cert.X509Certificate[] certs = (java.security.cert.X509Certificate[])req.getAttribute("javax.servlet.request.X509Certificate") Federico Fernandez Cruz

Re: Apache SSL again... those variables are getting me mad!

2003-12-18 Thread Federico Fernandez Cruz
That's was an example. I allways get NULL for all calls regarding SSL, even with String cipher = (String)request.getAttribute("javax.servlet.request.cipher_suite"); or the key size example. I know that code won't compile... My intention was pointing you to the real problem... I can't access

Re: Apache SSL again... those variables are getting me mad!

2003-12-18 Thread Mark W. Webb
what is null? the certs object ? Why do you have the following 2 lines... X509Certificate [] certs = (X509Certificate [])request.getAttribute("javax.servlet.request.X509Certificate"); X509Certificate [] certs = (X509Certificate [])request.getAttribute("org.apache.coyote.request.X509Certificate

Apache SSL again... those variables are getting me mad!

2003-12-18 Thread Federico Fernandez Cruz
Sure! This is getting personal... ;-) Apache and Tomcat will not be my friends anymore! :-D Well, I'll try to be a little exhaustive just because sometimes I miss something that is the real point of the question. Let's go. My target is an Apache + Tomcat integration using JK2. Software! R