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 ...".
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
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
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,
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
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