gt; the client cert and not the entire chain. You have to configure certificate
> validation in Httpd.
>
> "Florian Rock" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
>
>> Hi,
>> tomcat doesn't validate my client certif
Hi,
tomcat doesn't validate my client certificate when using mod_proxy_ajp:
my config:
SSLEngine on
SSLCertificateFile /somepath/somecert.crt
SSLCertificateKeyFile /somepath/somecert.key
SSLVerifyClient optional_no_ca
SSLVerifyDepth 0
SSLOptions +StdEnvVars +ExportCertData
Hello,
the answer is very simple:
this is a bug in APR components (the https connector)
http://issues.apache.org/bugzilla/show_bug.cgi?id=37869
thats the reason why i don't able to use apr :(
greets
Florian
Florian Rock schrieb:
> Hello guys,
>
> I verify clients by Cer
Hello guys,
I verify clients by Certificate in my Application.
X509Certificate[] certs =
(X509Certificate[])context.getRequest().getAttribute("javax.servlet.request.X509Certificate");
this works fine with connector like:
but i want to use Apache Portable Runtime with Tomcat (libtcnative).
becau