Re: Help with overriding default cookie name

2015-04-29 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Brian, On 4/29/15 5:42 PM, Brian Jones wrote: > Thanks for getting back to me. I did end up solving the problem, > and it was not a bug or related in any way to what Tomcat is doing. > It ended up being a (very buried) property setting of the > appl

Re: Help with overriding default cookie name

2015-04-29 Thread Brian Jones
Chris, Thanks for getting back to me. I did end up solving the problem, and it was not a bug or related in any way to what Tomcat is doing. It ended up being a (very buried) property setting of the application that is not documented anywhere. A lot of grep-ing lead me to the realization. After

Re: Help with overriding default cookie name

2015-04-29 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Brian, On 4/21/15 3:21 PM, Brian Jones wrote: > Chris, thanks for getting back to me! > >>> I'm trying to override the default cookie name (JSESSIONID) for >>> one of my Tomcat7 instances. I put the following in >>> $catalina_home/conf/context.xml

Re: Help with overriding default cookie name

2015-04-21 Thread Brian Jones
Chris, thanks for getting back to me! I'm trying to override the default cookie name (JSESSIONID) for one of my Tomcat7 instances. I put the following in $catalina_home/conf/context.xml: That will change the session cookie name for all applications deployed on the server, and not just one we

Re: Help with overriding default cookie name

2015-04-21 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Brian, On 4/21/15 1:14 PM, Brian Jones wrote: > I'm trying to override the default cookie name (JSESSIONID) for one > of my Tomcat7 instances. I put the following in > $catalina_home/conf/context.xml: > > That will change the session cookie name

Help with overriding default cookie name

2015-04-21 Thread Brian Jones
Hello, I'm trying to override the default cookie name (JSESSIONID) for one of my Tomcat7 instances. I put the following in $catalina_home/conf/context.xml: However, after restarting Tomcat, the setting isn't being applied; the cookie always remains as JSESSIONID rather than MyCookie. My