(That's supposed to be send_http_header() - and there's prob a few other
errors in there. :)

On Thu, 2003-07-17 at 13:50, Mark Maunder wrote:
> Thanks - would be helpful if you could try to use pnotes to communicate
> between two mod_perl handlers. Just some really basic code like:
> package MyContentHandler;
> use Apache::Constants qw( :common );
> sub handler
> {
>       my $r = shift @_;
>       $r->pnotes('mykey', 'A regular string scalar');
>       $r->send_header('text/html');
>       print "Hi there. This is a regular content handler.";
>       return OK;
> }
> 1;
> 
> and 
> package MyLoggingHandler;
> use Apache::Constants qw( :common );
> sub handler
> {
>       my $r = shift @_;
>       #Do some logging
>       warn "Value of pnotes is: " . $r->pnotes('mykey');
>       return OK;
> }
> 1;
> 
> And then install those as a content and logging phase handler. If you
> have the time and the interest. I've tried this and the logging handler
> comes up with nothing in pnotes. I've also checked that it's not a sub
> request. Thanks :)
> 
> On Thu, 2003-07-17 at 12:44, Dennis Stout wrote:
> > > Has anyone gotten $r->pnotes() to work under Apache 1.3.27 and mod_perl
> > > 1.27? A simple yes will do because then at least I'll know if it's my
> > > mistake or a bug.
> > 
> > I'll work on it when I get home again.  weee, thursday, gotta have this
> > project done monday..  *sigh*
> > 
> > The good news, is that I run Apache 1.3.27 and mod_perl 1.27.
> > 
> > Anyways, thought you might like to know I'll work on it and someone out there
> > HAS read your email :)
> > 
> > Dennis
-- 
Mark Maunder <[EMAIL PROTECTED]>
ZipTree Inc.

Reply via email to