IE8 will lose session information

I have a Java web application that interrupts session data. The problem only occurs with users in IE8. I used IEWatch to track http traffic and it seems that the correct session cookies are sent (JSESSIONID2). When a request arrives at the server, the session becomes disconnected from the user session monitor (this uses the HttpBindingListener). As I mentioned, this problem is intermittent, and I even made a transaction with a client doing the same thing on my machine, however I was not able to reproduce their problem. It should also be noted that the transaction fails at the same point every time for all users who experience this - this is one second page of an operation such as 4 pages. Any help would be greatly appreciated.

Nige

0
source share
1 answer

Yes, I found a problem.

I use DWR for AJAX materials, and there is a problem with DWRUtil.useLoadingMessage ().

See http://directwebremoting.org/dwr/browser/util/useLoadingMessage.html

Thus, this threw an exception that hit the error page (jsp) on which the invalid session statement was entered.

It took me bloody centuries to find him.

Hope this helps you, but somehow I doubt it :)

Nige

+1
source

Source: https://habr.com/ru/post/1439809/


All Articles