You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 9, 2019. It is now read-only.
While it is possible to reference each web app from a different domain it is not always possible.
Some users will want to deploy Yana in the same container as another web app which will cause session conflicts at the cookie level.
ah... I see what you are trying to do. This is handled in context, not in app. You just manage this through your context when setting up virtual hosts in your app server.
http://info.michael-simons.eu/2011/01/28/disable-jsessionid-path-parameter-in-java-web-applications/
ok sp[ring security uses that only in initially setting cookie apparently but it does use it
but yeah we are getting conflict because we share same environment... http://localhost so it tries to create and delete same cookie. This will not exist EXCEPT if tools exist within EXACT SAME ENVIRONMENT which is always considered bad form to begin with anyway. And this can be fixed through context (I believe) or by just using subdomains or fake hosts (if you must) in your /etc/host file
While it is possible to reference each web app from a different domain it is not always possible.
Some users will want to deploy Yana in the same container as another web app which will cause session conflicts at the cookie level.
Reference: Resolving JSESSIONID Conflicts
The text was updated successfully, but these errors were encountered: