On 1/31/07, Todd Finney <[EMAIL PROTECTED]> wrote:
Wouldn't throwing a

         return DECLINED unless $r->is_initial_req;

at the top of the handler fix the problem, in that case?

Probably, if you don't actually need this handler to run for the final
URI.  What's the purpose of the handler?

That occurred to me, and one of the first things that I tried was something
like this:

         my $temp_session=$session{_session_id};
         $r->pnotes('SESSION_ID', $temp_session);

It didn't change anything

It was worth a shot.  I really thought that would do it though.  Maybe
in your real code there's some additional line that keeps $session
from going out of scope.  You could explicitly undef it at the end of
your HeaderParserHandler if that's the case.

- Perrin

Reply via email to