Hello everyone, I have a hunchentoot instance serving several applications, where each application is accesed using a different subdomain (i.e. app1.my-domain.net, app2.my-domain.net...etc). Is it possible to make sessions global to all the applications?
Thanks for any hint, Sergio
On Sun, 7 Oct 2007 19:10:46 +0200, "Sergio Garcia" sergio.garcia@gmail.com wrote:
I have a hunchentoot instance serving several applications, where each application is accesed using a different subdomain (i.e. app1.my-domain.net, app2.my-domain.net...etc). Is it possible to make sessions global to all the applications?
Not without patching Hunchentoot. For session support using only cookies you'd have to provide the corresponding "domain" parameter to the session cookie, and for cookie-less session support you'd have to modify the optional TEST-FN argument for REWRITE-URLS.