It's the request header, In fact I receive an http request with a certificate whish I can read by: *
certificate *= *apr_table_get(r->headers_in, sslClientCertificat); *Now I want to redirect the SAME request to another server by preserving the request (and the certificate into it) when I tried this: * apr_table_setn(r->headers_out, (const char*)"Location",url); ap_log_rerror(APLOG_MARK,APLOG_NOTICE,0,r,"The certificate %s",apr_table_get(r->headers_out, sslClientCertificat)); return HTTP_MOVED_TEMPORARILY**; * I have the log: *The certificate= null;* * *How Can I redirect ALL the request?? Thks. On Jan 15, 2008 2:02 PM, Eric Covener <[EMAIL PROTECTED]> wrote: > On Jan 15, 2008 5:17 AM, karim Bendadda <[EMAIL PROTECTED]> wrote: > > I'm sorry but the redirection doesn't work (I'm so sad...).. It > redirects > > just a new http request but the Informations that I need on the incoming > > request is not beeing requested... I think I need a mod_proxy_hook... > > What information isn't retained? Something in apache? A request header? > > > > -- > Eric Covener > [EMAIL PROTECTED] > -- Karim