Re: Share session cookie across subdomains

2008-05-15 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Zach, Zach Cox wrote: | Hi Matthias - Unfortunately I think the Response class is just as ill-suited | for wrapping/extending as the Request class is. Okay, I finally looked at this class, again. static final is just fine: it doesn't mess with the s

Re: Share session cookie across subdomains

2008-04-25 Thread Zach Cox
--- > To start a new topic, e-mail: users@tomcat.apache.org > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > -- View this message in context: http://www.nabble.com/

Re: Share session cookie across subdomains

2008-04-25 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Zach, Zach Cox wrote: | Hi Matthias - Unfortunately I think the Response class is just as ill-suited | for wrapping/extending as the Request class is. Which boggles my mind - | isn't wrapping the Request and/or Response one of the primary intended |

RE: Share session cookie across subdomains

2008-04-25 Thread Zach Cox
. > > -- Matthias > > -Original Message- > From: Christopher Schultz [mailto:[EMAIL PROTECTED] > Sent: Wednesday, April 23, 2008 9:51 PM > To: Tomcat Users List > Subject: Re: Share session cookie across subdomains > > -BEGIN PGP SIGNED MESSAGE- > Ha

RE: Share session cookie across subdomains

2008-04-24 Thread Reich, Matthias
ponse must also be modified. -- Matthias -Original Message- From: Christopher Schultz [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 23, 2008 9:51 PM To: Tomcat Users List Subject: Re: Share session cookie across subdomains -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Zach, Zach Cox

Re: Share session cookie across subdomains

2008-04-23 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Zach, Zach Cox wrote: | Hi Chris - I'm not sure what this will accomplish: | | public Request(Request wrapped) | { | ~this.wrapped = wrapped; | } | | public whatever doWhatever(args) | { | ~super.doWhatever(args); | } | | 1) this.wrapped is n

Re: Share session cookie across subdomains

2008-04-23 Thread Zach Cox
st to call the super version of it? I'm not sure I follow you... Thanks, Zach -- View this message in context: http://www.nabble.com/Share-session-cookie-across-subdomains-tp16787390p16834778.html Sent from the Tomcat - User mailing list archiv

Re: Share session cookie across subdomains

2008-04-22 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Zach, Zach Cox wrote: | That's what I was afraid of - that Request class is huge (2600+ lines) and | has lots of fields (50+) some of which are private. So if I create a | Request subclass that accepts another Request in the constructor, there are |

Re: Share session cookie across subdomains

2008-04-22 Thread Zach Cox
> To start a new topic, e-mail: users@tomcat.apache.org > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > -- View

Re: Share session cookie across subdomains

2008-04-21 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Zach, Zach Cox wrote: | Hi Chris - I thought about doing that, but that existing Request | object could have state that my newly created Request will not have - | Request does not have a copy constructor and does not wrap another | Request object. T

Re: Share session cookie across subdomains

2008-04-21 Thread Zach Cox
/pFXUZFtob3 > JYUAnRxnQV+FEtkxqruWMfA0U2p/Qg9O > =ScpV > -END PGP SIGNATURE- > > - > To start a new topic, e-mail: users@tomcat.apache.org > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [E

Re: Share session cookie across subdomains

2008-04-21 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Zach, Zach Cox wrote: | Note that this entire issue would be made much more simple if there was an | easy way to override the | org.apache.catalina.connector.Request.configureSessionCookie method. I have | not found an easy way to do that. Have your

RE: Share session cookie across subdomains

2008-04-21 Thread Zach Cox
ge- > From: Zach Cox [mailto:[EMAIL PROTECTED] > Sent: Saturday, April 19, 2008 10:26 PM > To: users@tomcat.apache.org > Subject: Share session cookie across subdomains > > I'm working on a site that has a single web app in Tomcat that handles > lots of subdomains via

RE: Share session cookie across subdomains

2008-04-21 Thread Reich, Matthias
- From: Zach Cox [mailto:[EMAIL PROTECTED] Sent: Saturday, April 19, 2008 10:26 PM To: users@tomcat.apache.org Subject: Share session cookie across subdomains I'm working on a site that has a single web app in Tomcat that handles lots of subdomains via wildcard DNS: - site.com - www.sit

Re: Share session cookie across subdomains

2008-04-20 Thread Zach Cox
time to implement & test I will leave this as an exercise to the reader. ;) -- View this message in context: http://www.nabble.com/Share-session-cookie-across-subdomains-tp16787390p16793243.html Sent from the Tomcat - User mailing list archive at Nabble.com. -

Re: Share session cookie across subdomains

2008-04-19 Thread Pid
how about adding either, a property that allows you to specify the number of domain parts (accounting for domain.co.uk for example), or the actual domain? p Zach Cox wrote: I'm working on a site that has a single web app in Tomcat that handles lots of subdomains via wildcard DNS: - site

Share session cookie across subdomains

2008-04-19 Thread Zach Cox
I'm working on a site that has a single web app in Tomcat that handles lots of subdomains via wildcard DNS: - site.com - www.site.com - sub1.site.com - sub2.site.com - etc. Basically, the site content gets customized based on the subdomain in the request, if any. However I ran into a problem