Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
0.8
-
None
-
None
-
Ubuntu 14.04 LTS, WebSphere Application Server 8.0.0.9
Description
Please check "insertRequest" method of "BoshBackedSessionContext" class.
Inside this method we have folllowing code:
final boolean resend = rid <=requestsWindow.getCurrentProcessingRequest();
if we have several requests and they come out of order to the server - there is a possibility that we will receive at first request with highest rid and only after that request with lower rid. This will lead us that the request with lower rid will be counted as "resend" request and it will lead to session termination.