I keep running into methods not implemented where documentation says they
are.  Is it something about me or a common problem?
 
sub handler{
    my $r = shift;
    $r->print("hello");
}
 
fails with "Can't locate object method print via package
Apache2::RequestRec"
 
   Apache2->request
 
fails with Can't locate object method "request" via package "Apache2".
(That method is described in Apache2::RequestUtil which I loaded).
 
Should I be loading any modules other than Apache2::RequestRec?
 
Thanks!

Reply via email to