1
vote
2answers
80 views
Long-running transactions structured approach
I'm looking for a structured approach to long-running (hours or more) transactions. As mentioned here, these type of interactions are usually handled by optimistic locking and manual merge strategies. …
0
votes
2answers
66 views
long running http connection never gets response back
I am making an http request which ends up taking more than 8 mins. For me, this long running request work fine. I am able to get a response back to my browser without any issues. (I am located on the …
2
votes
5answers
126 views
(Win/C#/.Net) Applet needs to poll at hourly interval - recommendations on best method?
Applet needs to poll for existence of a directory, say, every 1-4 hours, and send a couple emails/NET SENDs if it is not found. Not sure on exact interval yet, but it will definitely not be shorter …
2
votes
1answer
56 views
How do you manage versions in Workflow Foundation?
How do you manage versions of workflows in WF when you have long running workflows and you might have two or three versions in the persistence store at the same time and have to be able to access them …
0
votes
2answers
154 views
Dealing with a longer running process in WCF
In the app I'm currently working on we are using a couple of WCF services with a lot of methods. Until now, all methods are very short running, often just getting some data. I've just added a method …
4
votes
4answers
403 views
PHP Daemon/worker environment
Problem: I want to implement several php-worker processes who are listening on a MQ-server queue for asynchronous jobs. The problem now is that simply running this processes as daemons on a server …
1
vote
3answers
179 views
Giving user feedback during long-running process and user-interface/business-logic separation
When a long-running process is being executed, it is a good practice to provide feedback to the user, for example, updating a progress bar.
Some FAQs for GUI libraries suggest something like this:
…
