Re: passing Apache::Request object

2002-11-24 Thread Stas Bekman
Marc Lambrichs wrote: Hi All, I want to save my Apache::Request object in an PerlInitHandler called Initialization and later on during the life cycle of the request call a Initialization->get_request() method to use it again. perldoc Apache::Request: instance

passing Apache::Request object

2002-11-23 Thread Marc Lambrichs
  Hi All,   I want to save my Apache::Request object in an PerlInitHandler called Initialization and later on during the life cycle of the request call a Initialization->get_request() method to use it again.   How can I do this in a safe manner? If you're wondering, why I would wan

Re: Apache request object

2001-03-12 Thread Perrin Harkins
On Mon, 12 Mar 2001, Gene Dascher wrote: > How can I access the Apache Request object from a Perl package that I am > calling from a Perl Authorization handler? $r is the first argument passed to your handler. my $r = shift; > I tried using the following code in TestPackage.pm: &

Apache request object

2001-03-12 Thread Gene Dascher
How can I access the Apache Request object from a Perl package that I am calling from a Perl Authorization handler? Example: Package TestPackage.pm --- Package Apache::TestPackage.pm @EXPORT qw ($home_url); my $home_url = "http:" . "//" . $EN

Re: Apache::ASP and Apache request object

2000-06-16 Thread Joshua Chamas
Dmitry Beransky wrote: > > Hi, > > In order to get an instance of Apache::Session, I need to get to the > current session id which is stored in a request header, which means I need > to get a reference to the current apache request object. I've browsed > through Apa

Apache::ASP and Apache request object

2000-06-16 Thread Dmitry Beransky
o the current session id which is stored in a request header, which means I need to get a reference to the current apache request object. I've browsed through Apache::ASP code and docs and realized that there is no documented API for accessing the underlying request, but I can still do it by

RE: where to find info on the Apache request object

2000-05-01 Thread Geoffrey Young
> -Original Message- > From: Sam Carleton [mailto:[EMAIL PROTECTED]] > Sent: Sunday, April 30, 2000 2:08 PM > To: mod_perl > Subject: Re: where to find info on the Apache request object > > > Jeff Beard wrote: > > > > Or read chapter 9 in the Eag

Re: where to find info on the Apache request object

2000-04-30 Thread Sam Carleton
t;like to see all the functions that I can call on the Apache request > > >object. Can anyone point me to some documentation? I didn't see a > > >listing in "Writing Apache Modules in Perl and C". > > > > > >Sam > > > >try 'perl

Re: where to find info on the Apache request object

2000-04-30 Thread Jeff Beard
Or read chapter 9 in the Eagle book. --Jeff At 10:43 AM 4/30/00, Tobias Hoellrich wrote: >At 01:34 PM 4/30/00 -0400, Sam Carleton wrote: > >I am learning perl/mod_perl right now and have some questions. I would > >like to see all the functions that I can call on the Apache re

Re: where to find info on the Apache request object

2000-04-30 Thread Tobias Hoellrich
At 01:34 PM 4/30/00 -0400, Sam Carleton wrote: >I am learning perl/mod_perl right now and have some questions. I would >like to see all the functions that I can call on the Apache request >object. Can anyone point me to some documentation? I didn't see a >listing in "Wri

where to find info on the Apache request object

2000-04-30 Thread Sam Carleton
I am learning perl/mod_perl right now and have some questions. I would like to see all the functions that I can call on the Apache request object. Can anyone point me to some documentation? I didn't see a listing in "Writing Apache Modules in Perl and C". Sam