I need to duplicate/replace a Perl module which is getting the user ID information (I think) from some CGI information which is not available to my
servlet via request.getRemoteUser() or request.getPrincipal().getName(). I can look at all of the request paramaeters as well as all request and session attributes and this user ID info is not present. However the Perl module can find it using the following code:
my $r = shift;
my($user_id) = $r->connection->user;
It looks as if there is information available to the Perl module (in the $r->connection object, some CGI variables perhaps ?) which I am yet unable to access from my servlet. Is anyone aware of how I might get this info ?
Thanks in advance for any assistance or insight.
-James