Ajax Workflow

Ajax Workflow

am 06.01.2008 14:11:00 von 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

RE: Ajax Workflow

am 07.01.2008 09:56:00 von jignesh

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

"maa" wrote:

> 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