Re: set environment variables in tomcat

2011-06-02 Thread André Warnier
Kim Goldov wrote: Thanks everyone. Here is what I ended up with. In my PerlHeaderParserHandler: $r->subprocess_env(AA_MYVAR => 'myvalue'); $r->subprocess_env(); In jk.conf: JkEnvVar AA_MYVAR In Tomcat: out.println("AA_MYVAR is: " + request.getAttribute("AA_MYVAR") );

Re: set environment variables in tomcat

2011-06-01 Thread Kim Goldov
Thanks everyone. Here is what I ended up with. In my PerlHeaderParserHandler: $r->subprocess_env(AA_MYVAR => 'myvalue'); $r->subprocess_env(); In jk.conf: JkEnvVar AA_MYVAR In Tomcat: out.println("AA_MYVAR is: " + request.getAttribute("AA_MYVAR") ); -- Kim

Re: set environment variables in tomcat

2011-05-27 Thread André Warnier
James B. Muir wrote: In order to pass an environment variable via mod_jk to tomcat you need to set the "JkEnvVar" in your jk.conf file. For example, JkEnvVar REMOTE_USER %{REMOTE_USER} The problem here being that the environment variable should be set in a Perl handler, if I understoo

RE: set environment variables in tomcat

2011-05-27 Thread James B. Muir
In order to pass an environment variable via mod_jk to tomcat you need to set the "JkEnvVar" in your jk.conf file. For example, JkEnvVar REMOTE_USER %{REMOTE_USER} -James From: Kim Goldov [mailto:kgol...@gmail.com] Sent: Thursday, May 26, 2011 8:24 PM To: modperl@perl.apache.org Subject

Re: set environment variables in tomcat

2011-05-26 Thread André Warnier
Kim Goldov wrote: I'm connecting to a tomcat server from our web server using mod_jk. I'm setting environment variables with each request in the PerlAuthenHandler and PerlHeaderParserHandler. I'm able to read the variables in PHP, perl fcgi, and wsgi, however they are not being passed to tomcat.

Re: set environment variables in tomcat

2011-05-26 Thread Fred Moyer
http://perl.apache.org/docs/2.0/user/config/config.html#C_PerlPassEnv_ might be what you are looking for. On Thu, May 26, 2011 at 5:24 PM, Kim Goldov wrote: > I'm connecting to a tomcat server from our web server using mod_jk. I'm > setting environment variables with each request in the PerlAuthe