Subject: | Not capturing HTTP Headers |
Hi, first I wanna say thanks, this package is a life saver.
Looks like ther HTTP headers are not being camptured correctly.
I found this becuase the action method returns undef.
Looking at the code I think the problem stems from the expression
HTTP::Headers->new($r->headers_in),
which is a paramter to HTTP::Request->new.
My guess is that in Apache2 headers_in is returning an APR::Table which
sounds like some sort of tied object. This means that the
HTTP::Headers::new method will not work as intended because its getting
a tied scalar where it expects a hash. I could of course be very wrong.
Have fun,
Bud