I\'m having a huge problem with my application and Tomcat 7. My application needs to set session cookie to \"/\" path instead of \"/context\" path. In tomcat 6 it was a matt
Juts put the sessionCookiePath="/" attribute into your context.xml root node:
sessionCookiePath="/"
<Context ... sessionCookiePath="/" > ... </Context>