Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
LockSessionTimeout
#6
Hi,

I suggest you turn on dev tools network tab in your browser and check all requests going to your server. A particular session can only process one request at a time. Please notice that not all requests require session locking (everything which is static shouldn't require, like images, CSS files, JavaScript files - both internal to IW and external) unless there is a problem in the method call. Everything which calls an event handler (e.g. OnAsyncClick, OnChange, etc) requires session locking.

So if RequestA goes to the server and requires session locking (e.g. it triggers OnAsyncClick event), the session will be locked for the duration of RequestA processing. If during that time your some JavaScript code posts another request, say RequestB, which also requires locking, there might be problems if RequestA takes too long. Typical calls are processed very quickly and this might never be a problem. But let's say that RequestA generates a huge report on the server side which takes more than the LockSessionTimout time, then it might fail.

You have 2 options: Increate LockSessionTimeout time or (the preferred) understand and possibly avoid why your browser is posting 2 requests in parallel to your application. This shouldn't happen under normal circumstances (except, as I mentioned, request for static files like CSS and JS).
Reply


Messages In This Thread
LockSessionTimeout - by zsleo - 08-26-2018, 02:51 AM
RE: LockSessionTimeout - by Alexandre Machado - 08-27-2018, 10:02 PM
RE: LockSessionTimeout - by zsleo - 08-31-2018, 06:48 PM
RE: LockSessionTimeout - by Alexandre Machado - 09-04-2018, 08:50 AM
RE: LockSessionTimeout - by zsleo - 09-04-2018, 09:16 PM
RE: LockSessionTimeout - by Alexandre Machado - 09-05-2018, 10:41 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)