Re: Session across multiple hosts?

2007-04-22 Thread Jeremy Cowgar
rry... your question still remains open think we going to need the help of the guru that wrote the "single sign on" module... Original Message - From: "Jeremy Cowgar" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Saturday, April 21,

Re: Session across multiple hosts?

2007-04-21 Thread Jeremy Cowgar
Unfortunately that did not work. The cookie still got set as domain.com, not .domain.com I have in server.xml: className="org.apache.catalina.authenticator.SingleSignOn" cookieDomain=".localhost"/> Now, this is still in development, thus the localhost,

Session across multiple hosts?

2007-04-20 Thread Jeremy Cowgar
Greetings! I have domain.com and my app uses hosts under that domain, like abc.domain.com, def.domain.com... When the user logs in, the session is valid only on domain.com... How can I make that session also valid under the other hostnames? Thanks, Jeremy --

Re: Wildcard for server alias?

2007-04-20 Thread Jeremy Cowgar
Thanks, that will do the trick! Jeremy On Apr 20, 2007, at 3:10 AM, Pid wrote: Jeremy Cowgar wrote: Is it possible to do a wildcard on the server alias? I have something like username.hostname.com instead of hostname.com/ ~username/ ... I have a wildcard in DNS so I do not define each

Wildcard for server alias?

2007-04-19 Thread Jeremy Cowgar
Is it possible to do a wildcard on the server alias? I have something like username.hostname.com instead of hostname.com/~username/ ... I have a wildcard in DNS so I do not define each host. In the current apache version of the app, I have ServerAlias *.hostname.com which works great. Can