Hello,

I do the following:

my $parsed_uri = $r->parsed_uri;
my $r_scheme   = $parsed_uri->scheme;
my $r_host     = $parsed_uri->hostinfo;
my $r_rpath    = $parsed_uri->rpath;
my $r_path     = $parsed_uri->path;


The result is that the scalars $r_scheme and $r_host are empty, and
only $r_path and $r_rpath have data in them (and the data is correct).

But, if instead I do,

my $me = Apache::URI->parse($r);
my $r_scheme   = $parsed_uri->scheme;
my $r_host     = $parsed_uri->hostinfo;
my $r_rpath    = $parsed_uri->rpath;
my $r_path     = $parsed_uri->path;

I get valid data back for each request.  What am I missing?

I'm using mod_perl 1.23 and Apache 1.3.12 on Caldera LINUX if that's of 
any help.

Thanks,
Rob


       _ _ _ _           _    _ _ _ _ _
      /\_\_\_\_\        /\_\ /\_\_\_\_\_\
     /\/_/_/_/_/       /\/_/ \/_/_/_/_/_/  QUIDQUID LATINE DICTUM SIT,
    /\/_/__\/_/ __    /\/_/    /\/_/          PROFUNDUM VIDITUR
   /\/_/_/_/_/ /\_\  /\/_/    /\/_/
  /\/_/ \/_/  /\/_/_/\/_/    /\/_/         (Whatever is said in Latin
  \/_/  \/_/  \/_/_/_/_/     \/_/              appears profound)
  
  Rob Tanner
  McMinnville, Oregon
  [EMAIL PROTECTED]

Reply via email to