Hi, first time posting on a mailing list, hope i'm not breaking any rules of some sort. My problem is pretty simple but it seems a lot of people have trouble understanding it in other forums. Let's say i have 2 main entry points into my application: /subapp/a and /subapp/b. They are part of the same webapp but they are somehow different and i want to distinguish between them. Having a separate session for each of them would be the greatest thing but is this possible for Tomcat? The path of the session cookie (JSESSIONID) is automatically put at the root context path (so /subapp in this example). And i don't want to have multiple wars or multiple Tomcats... I would like this in Tomcat 7 btw... I'm trying to avoid changing Tomcat itself so i tried to extend/wrap the usual response classes/interfaces but no luck because Tomcat writes the Set-Cookie header directly into the coyote response header...
Any help would be appreciated, been wrestling with this for some days... Thanks, Teo