Re: Issue with Auth Handler

2008-05-12 Thread Fred Moyer
Tracy12 wrote: Strange thing is it shows some cookie information and in the end it shows Connection: close Content-Length: 0 Why it is showing Content-Length: 0 Do I have to explicitly handle the headers? or do I have to $r->send_http_header; This is only needed for mod_perl 1.x series.

Re: Issue with Auth Handler

2008-05-11 Thread Tracy12
Is there any apache level directive to allow custom http headers pass through to the destination Tracy12 wrote: > > Hi, > > We developed a mod_perl auth handler, everything seem to be working fine, > > But when the request reaches the final destination, the header information > is lost, > >

Re: Issue with Auth Handler

2008-05-11 Thread Tracy12
Strange thing is it shows some cookie information and in the end it shows Connection: close Content-Length: 0 Why it is showing Content-Length: 0 Do I have to explicitly handle the headers? or do I have to $r->send_http_header; I thought I dont need to do any of those as everything willl