RE: using stacked_handlers()

2005-06-15 Thread Frank Maas
Hello Arshavir, > I am trying to use the stacked handlers functionality but cannot seem > to get it working. What I have is the following 2 modules: > > package Test; [...] > $r->push_handlers(PerlResponseHandler => 'Test1::handler'); > > package Test1; [...] > sub handler { [...] > > >

Re: using stacked_handlers()

2005-06-14 Thread Arshavir Grigorian
Geoffrey Young wrote: Arshavir Grigorian wrote: Hello list, I am trying to use the stacked handlers functionality but cannot seem to get it working. What I have is the following 2 modules: package Test; use strict; sub handler { my $r = shift; $r->push_handlers(PerlResponseHandler =

Re: using stacked_handlers()

2005-06-14 Thread Geoffrey Young
Arshavir Grigorian wrote: > Hello list, > > I am trying to use the stacked handlers functionality but cannot seem to > get it working. What I have is the following 2 modules: > > package Test; > > use strict; > > sub handler { > my $r = shift; > > $r->push_handlers(PerlResponseHandle