Re: undefined subroutine: get_server_description, get_server_banner

2008-04-09 Thread Jeff
Doh! Thanks for that Adam! The version info in the docs was indeed staring me in the face An MP2 upgrade is out of the question - Debian Stable is 2.0.2 for the next few years (historically, 3 year cycle, Stable was first released Aug-07), Testing and Unstable currently have MP2.0.3_5, but th

Re: undefined subroutine: get_server_description, get_server_banner

2008-04-08 Thread adam . prime
Quoting Jeff Armstrong <[EMAIL PROTECTED]>: Folks, indicates that I should be able to: $description = Apache2::ServerUtil::get_server_description(); however, I find that Apache2::ServerUtil::get_se

Re: undefined subroutine: get_server_description, get_server_banner

2008-04-08 Thread Jeff
Did you remember to "use Apache2::ServerUtil"? It's probably obvious, but it's easy to miss sometimes - mod_perl doesn't pull in all the APIs automatically, just what you specify (to avoid memory overhead for things you don't use). Yes - I have already used Apache2::ServerUtil - other funcs ar

Re: undefined subroutine: get_server_description, get_server_banner

2008-04-08 Thread Torsten Foertsch
On Tue 08 Apr 2008, Jeff Armstrong wrote: > More specifically, I was also hoping to gain direct access to the SSL > connection info for client certificate authentication - e.g. the stuff > that appears in %ENV like: >   SSL_CLIENT_S_DN_CN >   SSL_CLIENT_S_DN_Email >   SSL_CLIENT_S_DN Apache2::ModS

Re: undefined subroutine: get_server_description, get_server_banner

2008-04-08 Thread Malcolm
On Tuesday 08 April 2008 07:26:55 am Jeff Armstrong wrote: > Folks, > > escription_> indicates that I should be able to: >$description = Apache2::ServerUtil::get_server_description(); > > however, I find that >Ap

Re: undefined subroutine: get_server_description, get_server_banner

2008-04-08 Thread Jeff Armstrong
Folks, I am finding this frustrating - many of the documented functions do not appear to work, another example - I am trying to find the local IP and port of the connection - local_ip works, $r->connection->local_addr->port() does not, and $r->server->port() return 0. Has anyone already wr