Re: [Re: [Re: again - more then one PerlTransHandler]]

1999-12-22 Thread Peter Haworth
Doug MacEachern wrote: > > At least that's what I thought ! > > > > In fact now Apache lets me use more then one > > PerlTransHandler, but it doesn't care > > of what is the return codes are!!! > > > > Even I return OK, it still calls >

Re: [Re: [Re: again - more then one PerlTransHandler]]

1999-12-22 Thread Andrei A. Voropaev
nslation the "native" handler will be called only if last Perl handler returned DECLINED. Andrei On Tue, Dec 21, 1999 at 01:45:40PM -0800, Doug MacEachern wrote: > > At least that's what I thought ! > > > > In fact now Apache lets me use more then one > &g

Re: [Re: [Re: again - more then one PerlTransHandler]]

1999-12-21 Thread Doug MacEachern
> At least that's what I thought ! > > In fact now Apache lets me use more then one > PerlTransHandler, but it doesn't care > of what is the return codes are!!! > > Even I return OK, it still calls > next registered handlers. Really weird! mod_perl does car

Re: [Re: [Re: again - more then one PerlTransHandler]]

1999-12-19 Thread Evgenii Bazarov
Thanks for the answers! I was using RedHat rpm and it was giving the problem as it was suggested. After I built mod_perl with apache (mod_perl 1.21, apache 1.3.9, the problem was resolved. At least that's what I thought ! In fact now Apache lets me use more then one PerlTransHandler, b

Re: [Re: again - more then one PerlTransHandler]

1999-12-16 Thread Eric Cholet
On Thu, 16 Dec 1999, you wrote: > Waa!!! So far nobody who answered even doubted that > it should be possible to have more then one > PerlTransHandler. The "Eagle" book also says > that it should be possible. People suggested that > either my mod_perl built with wro

Re: [Re: again - more then one PerlTransHandler]

1999-12-16 Thread Evgenii Bazarov
Waa!!! So far nobody who answered even doubted that it should be possible to have more then one PerlTransHandler. The "Eagle" book also says that it should be possible. People suggested that either my mod_perl built with wrong flags or I messed up return codes OK/DECLINED (which I did

Re: [Re: more then one PerlTransHandler]

1999-12-16 Thread Evgenii Bazarov
d? If you want others to work then return DECLINED Andrei On Sun, Dec 12, 1999 at 07:46:01AM -0700, Evgenii Bazarov wrote: > Hi! > > I tried to set more then one PerlTransHandler but > if I specify both on the same line, Apache says > "syntax error", otherwise it see only

Re: again - more then one PerlTransHandler

1999-12-15 Thread Jay J
- Original Message - From: "Andrei A. Voropaev" <[EMAIL PROTECTED]> To: "Evgenii Bazarov" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, December 15, 1999 10:18 AM Subject: Re: again - more then one PerlTransHandler > It works p

Re: again - more then one PerlTransHandler

1999-12-15 Thread Andrei A. Voropaev
to put two lines in config: > > PerlTransHandler SimpleTranslation::handler > PerlTransHandler FancyTranslation::handler > > In this case, only second handler gets invoked. > Am I missing something?!!! > > Evg > > > > -

Re: again - more then one PerlTransHandler

1999-12-15 Thread darren chamberlain
You're not missing anything. You can only have one translation handler. In the case of the two TransHandlers, the second definition masks the first. Can't you just rewrite the SimpleTranslation::handler to be ModeratelyComplexTranslation::handler, and do the Right Thing in that one handler? I.e.,

RE: again - more then one PerlTransHandler

1999-12-15 Thread Geoffrey Young
H --Geoff > -Original Message- > From: Evgenii Bazarov [mailto:[EMAIL PROTECTED]] > Sent: Monday, December 13, 1999 8:42 AM > To: [EMAIL PROTECTED] > Subject: again - more then one PerlTransHandler > > > Hi everybody, > > Sorry for the poor wording of my question.

again - more then one PerlTransHandler

1999-12-14 Thread Evgenii Bazarov
ied to put two lines in config: PerlTransHandler SimpleTranslation::handler PerlTransHandler FancyTranslation::handler In this case, only second handler gets invoked. Am I missing something?!!! Evg Hi! I tried to set more then one PerlTransHandle

Re: more then one PerlTransHandler

1999-12-14 Thread Doug MacEachern
On 12 Dec 1999, Evgenii Bazarov wrote: > Hi! > > I tried to set more then one PerlTransHandler but > if I specify both on the same line, Apache says > "syntax error", otherwise it see only the last one. make sure you have built the server with at least PERL_STACKED_H

more then one PerlTransHandler

1999-12-12 Thread Evgenii Bazarov
Hi! I tried to set more then one PerlTransHandler but if I specify both on the same line, Apache says "syntax error", otherwise it see only the last one. Apache 1.3.6 on Linux with mod_perl 1.19 According to "Apache Modules" book it should be possible... Any advice will b