Ajax Workflow

  • Thread starter Thread starter maa
  • Start date Start date
M

maa

Can I use Ajax to prevent browser timeout and allow the Browser to be updated
at times less than the browser timeout.
If the server is doing processing does that automatically mean a worker
thread is running on the server? How do I make sure that the worker thread
gets shut down when the user closes app.
App is long running but needs intermitten user input. It reads records in
the db and based on checks, allows user to edit and fix them.
Thanks,
Maa
 
A Periodic refresh/pinging to server in background will keep the session
alive.

Once browser is closed the session will be over after default session
timeout period.

- JIGNESH
 
Back
Top