Rails + Apache FCGI Client Auth BUG

Hi, I'm having a strange problem, my application is not passing the parameters to the form's action after a POST under SSL with client auth

on Apache + FCGI, but if I issue the same request over regular http everything works nice.

On regular HTTP I stop the app and open a breakpoint console and type:

params[:person]

it shows me the contents of my request.

But when on SSL I type the same thing and I get: => nil

I don't know why, but this does not happen all the time, seldom it shows my params variable even when on SSL.

This is how I configured SSL Client Auth on Apache:

<Location /myapp>     SSLVerifyClient require     SSLVerifyDepth 10 </Location>

<Files ~ "\.(cgi|fcgi|shtml|phtml|php3?)$">     SSLOptions +StdEnvVars +ExportCertData </Files>

Please help, I'm stuck and frustrated, could this be a bug? Thanks.

-Ofir