Chrome and JSESSIONID Chrome and JSESSIONID google-chrome google-chrome

Chrome and JSESSIONID


I also ran into this problem. It took me a while to figure out what was happening (including sniffing with Wireshark), and still more time to find a viable solution.At last I found this thread https://vaadin.com/forum/-/message_boards/view_message/1216366

It seams that this is a problem with Chrome/Safari (Webkit browsers?) and the way they handle redirected cookies.The simple fix was to add a context.xml to the META-INF directory in my spring project containing

<?xml version='1.0' encoding='utf-8'?><Context sessionCookiePathUsesTrailingSlash='false'></Context>

and then redeploying the new war file. Now everything is working as intended.