Reputation: 24731
How exactly and when exactly tomcat session cookies are formed.
I can see COOKIE_SUPPORT
, GUEST_LANGUAGE_ID
, JSESSIONID
, LOGIN
, I've downloaded source code, but nevertheless cannot see full picture (actually, I can find only JSESSIONID
).
It would be nice if you also provide any worthy link about how exactly tomcat sessions are configured and organized.
Upvotes: 0
Views: 272
Reputation: 1108632
Only JSESSIONID
is specific to servletcontainers. The remnant are specific to Liferay portlet framework which your webapplication is apparently using.
Upvotes: 1
Reputation: 15104
I'm not sure about the others, but for JSESSIONID you should read the servlet spec for when sessions are to be created. In these specs are features that must be implemented by compatible servlet containers.
Servlet 2.4 spec, SRV.7 Sessions.
Upvotes: 2