how to invalid an SSL session ?

2005-03-22 Thread Andrea Palmieri
I am writing some modules to do authentication in a reverse proxy scenario.   In a userid-password authentication mechanism I can invalid an authentication session using   $r->note_basic_auth_failure();return Apache::AUTH_REQUIRED;     In this way I can invalid the authentication session an

Apache::Cookie baking bug

2005-03-15 Thread Andrea Palmieri
I read in some previous message that Apache::Cookie->bake is buggy so used   $r->headers_out->add('Set-Cookie'=>$cookie);to send a cookie to a browser but..no way the browser do not receive any cookie !!! did I miss something ? Below I enclose my code fragment. Any help is apreciated Tha