Re: [mp1] Method handler that eventually seems to "forget" it's a method handler

2005-02-02 Thread Martin Moss
I tried ->handler in my configs, made no difference. I was doing a 'require' in a startup script if that makes any difference. Haven't seen this issue with simillar code anywhere else.. Marty --- Geoffrey Young <[EMAIL PROTECTED]> wrote: > > > > > PerlTransHandler MyApp::MyIn

Re: [mp1] Method handler that eventually seems to "forget" it's a method handler

2005-02-02 Thread Martin Moss
I've seen this problem and never got to the bottom of it, on a redhat box with 5.8.3 (I think) and same apache and mod_perl, Marty --- Andrew Green <[EMAIL PROTECTED]> wrote: > Hi, > > I seem to have a bizarre problem with method > handlers on my setup. I > have a set of different handler

Re: [mp1] Method handler that eventually seems to "forget" it's a method handler

2005-02-02 Thread Geoffrey Young
>>I'll give that a go and see. Is the following also kosher, then? >> >> $r->push_handlers( >> PerlCleanupHandler => MyApp::MyInstall::Cleaner->handler >> ); > > > sorry, no - you can't currently push a method handler like that. see the > > * method handler cached-CVs

Re: [mp1] Method handler that eventually seems to "forget" it's a method handler

2005-02-02 Thread Geoffrey Young
Andrew Green wrote: > On Wed, 02 Feb 2005 10:10:56 -0500, Geoffrey Young wrote: > > >>PerlTransHandler MyApp::MyInstall::Dispatcher->handler >> >>and see if that helps. > > > I'll give that a go and see. Is the following also kosher, then? > > $r->push_handlers( > P

Re: [mp1] Method handler that eventually seems to "forget" it's a method handler

2005-02-02 Thread Andrew Green
On Wed, 02 Feb 2005 10:10:56 -0500, Geoffrey Young wrote: > PerlTransHandler MyApp::MyInstall::Dispatcher->handler > > and see if that helps. I'll give that a go and see. Is the following also kosher, then? $r->push_handlers( PerlCleanupHandler => MyApp::MyInstall:

Re: [mp1] Method handler that eventually seems to "forget" it's a method handler

2005-02-02 Thread Geoffrey Young
> > PerlTransHandler MyApp::MyInstall::Dispatcher make that PerlTransHandler MyApp::MyInstall::Dispatcher->handler and see if that helps. you should also be preloading via PerlModule MyApp::MyInstall::Dispatcher or in a startup.pl. HTH --Geoff

[mp1] Method handler that eventually seems to "forget" it's a method handler

2005-02-02 Thread Andrew Green
Hi, I seem to have a bizarre problem with method handlers on my setup. I have a set of different handlers, all of which are method handlers so that I can easily inherit shared code across a collection of different installations of my application on the same server. The first handler to get in