in reply to cgi,wait for long running external prog

The most user friendly set up would probably be for you to maintain a list of currently running jobs and their state (running, aborted, completed). Then, either a manual refresh button, or if you really need auto-refresh, do it with ajax so that the whole page isn't reloading.

There's a dancer-oriented example that's pretty close to what you're looking for here:

http://advent.perldancer.org/2011/14

This one is chart oriented, but the same idea at a high level.

  • Comment on Re: cgi,wait for long running external prog

Replies are listed 'Best First'.
Re^2: cgi,wait for long running external prog
by noname (Sexton) on Feb 14, 2014 at 06:52 UTC
    Thank you, looks interesting. I'll post an update if I manage to implement it this way.