I\'m working on some code that calls a service. This service call could fail and if it does I want the system to try again until it works or too much time has passed.
I am on a LAMP stack for a website I am managing. There is a need to roll up usage statistics (a variety of things related to our desktop product).
I\'ve got a routine that grabs a list of all images in a directory, then runs an MD5 digest on all of them. Since this takes a while to do, I pop up a window with a progress bar. The progress bar is u
Edit (again): Let me simplify my problem.I have a Windows Service that exposes some WCF endpoints with methods like:
What are your most successful ways of running a long process, like 2 hours, in asp.net and return information to the client on the progress.
I am designing an application which has the potential to hang while waiting for data from servers (either Database or internet) the problem is that I don\'t know how best to cope with the multitude of
I have the need to kick off a long-running process in response to a form submission in django.Then, I\'d like to be able to poll using ajax and have the view respond with the state of the process (sta
Do you have a good solution for keeping a \'Please wait\' wi开发者_StackOverflow社区nform \'painted\' while an application is performing a long running task ?
I\'m writing a c# program that will launch many child processes.At some time later on, I\'ll need to retrieve those processes by ID and then match those processes to a set of processes stored in a Dic
We have a memory intensive processing for certain functionality and we would like to limit the number of parallel requests to this processing. We are able to configure by using \"Work Managers\" in We