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") );
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
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
apache.org
Subject: set environment variables in tomcat
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
w
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.
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
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. Is there a way to
pa