Re: [us...@httpd] Modify response header

2009-04-29 Thread Diego Manilla Suárez
Diego Manilla Suárez escribió: Nick Kew escribió: On Wed, 29 Apr 2009 12:31:59 +0200 Diego Manilla Suárez wrote: SetEnvIf Set-Cookie ^(JSESSIONID=.*)$ jsessionid_value=$1 Header set Set-Cookie "%{jsessionid_value}e; Domain=.my.domain" env=jsessionid_value Just use "Header edit ...".

Re: [us...@httpd] Modify response header

2009-04-29 Thread Diego Manilla Suárez
Nick Kew escribió: On Wed, 29 Apr 2009 12:31:59 +0200 Diego Manilla Suárez wrote: SetEnvIf Set-Cookie ^(JSESSIONID=.*)$ jsessionid_value=$1 Header set Set-Cookie "%{jsessionid_value}e; Domain=.my.domain" env=jsessionid_value Just use "Header edit ...". Thanks, I'll take a look

Re: [us...@httpd] Modify response header

2009-04-29 Thread Nick Kew
On Wed, 29 Apr 2009 12:31:59 +0200 Diego Manilla Suárez wrote: > SetEnvIf Set-Cookie ^(JSESSIONID=.*)$ jsessionid_value=$1 > Header set Set-Cookie "%{jsessionid_value}e; Domain=.my.domain" > env=jsessionid_value Just use "Header edit ...". -- Nick Kew Application Development with Apache - th

Re: [us...@httpd] Modify response header

2009-04-29 Thread André Warnier
André Warnier wrote: Diego Manilla Suárez wrote: Any other alternative before giving up and modifying some of Tomcat classes? a mod_perl output filter That is one alternative which I know works. I don't know about other ones. It requires installing perl and mod_perl on your Apache server,

Re: [us...@httpd] Modify response header

2009-04-29 Thread André Warnier
Diego Manilla Suárez wrote: Any other alternative before giving up and modifying some of Tomcat classes? a mod_perl output filter That is one alternative which I know works. I don't know about other ones. It requires installing perl and mod_perl on your Apache server, configuring it, then

[us...@httpd] Modify response header

2009-04-29 Thread Diego Manilla Suárez
Hi. I have a problem with a JEE app deployed on Tomcat: it needs to share the same session across different subdomains, but Tomcat (according to the specs, I think) doesn't explicitly set a multi-subdomain cookie to track the session. I've found some people with the same problem that uses a To