Tagged Questions
The long-running tag has no wiki summary.
8
votes
4answers
3k 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 ...
6
votes
2answers
605 views
Can I get the Internet Explorer debugger to break into long-running JavaScript code?
I have a page that has a byzantine amount of JavaScript code running. In Internet Explorer only, and only version 8, I get a long-script warning that I can reliably reproduce. I suspect it is event ...
4
votes
5answers
1k views
PHP: Coding long-running scripts when servers impose an execution time limit
FastCGI servers, for example, impose an execution time limit on PHP scripts which cannot be altered using set_time_limit() in PHP. IIS does this too I believe.
I wrote an import script for a PHP ...
4
votes
1answer
321 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 ...
4
votes
2answers
2k 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 ...
3
votes
3answers
645 views
ASP.NET Background Threads
I'm working on an ASP.NET application containing WCF services that is meant to act as a test double for a simulation production environment. It is standing in for a very complicated backend that can ...
3
votes
4answers
723 views
QueryPerformanceCounter and overflows
I'm using QueryPerformanceCounter to do some timing in my application. However, after running it for a few days the application seems to stop functioning properly. If I simply restart the application ...
3
votes
3answers
654 views
asp.net ThreadPool - long running operation
My application is a asp.net 3.5 running on iis 6 (windows 2003)
This application is serving 1000's of users daily (100-500 users online).
I want to send an email newsletter to customers weekly.
...
2
votes
5answers
513 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 ...
1
vote
1answer
40 views
The best practice for timeconsuming operations in eclipse rcp view
My RCP application contains 5 views which fill contents via database queries.
The problem is that when applications starts is completely dependes on database queries. In addition, if underlying db is ...
1
vote
1answer
191 views
EJB Timer long running method and Weblogic 10.3.4 issues
I have a EJB Timer 3.0, and this timer has a method approaximately runs 6 hours for per call. The Timer I have implemented is below:
@Stateless
...
1
vote
0answers
101 views
Another LazyInitializationException (in combination with Spring+GSON)
I guess I'm another newbie guy who fails to understand Hibernate sessions, may be Spring's TransactionTemplate, dunno. Here's my story.
I'm using Hibernate 3.5.5-Final, Spring 3.0.4.RELEASE, trying ...
1
vote
4answers
147 views
Is there something like a “long running offline transaction” for NHibernate or any other ORM?
In essence this is a followup of this question. I'm beginning to feel that I should give up the whole idea, but I'll give it one more shot.
What I want is pretty much like a DB transaction. It should ...
1
vote
2answers
577 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. ...
1
vote
3answers
288 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:
...
0
votes
2answers
29 views
Parse continuous output of a long-running command
I could not find similar question, so decided to post it
I have a long running job (*nix environment):
program > job.out
which is running over days and prints output in chunks. Can I instead of ...
0
votes
2answers
80 views
Return value if job is running
Hi I'm trying to make a little java job that copies files from one folder to another and some database storage and such. The job is run from a script which is run once each hour. I'd like to have a ...
0
votes
2answers
324 views
WCF Duplex timeout problem
I've been searching the web for the last two days, but by no means, I can get my WCF Duplex service working. I've created a demo project which can be download from skydrive:
WCFDuplexDemo.zip
For ...
0
votes
1answer
183 views
Communication framework recommendation
I have two applications, and one is keeping sending live images to the other and it need to be long-running.
WCF - is it suitable?
TCP/IP directly?
Service bus, NServiceBus?
Is there any better ...
0
votes
1answer
137 views
long running process behind .NET service
I would like advice from the architecturally minded on the best framework or method for the following:
server: a windows service in .NET
client: any mainstream language, a combination of .NET ...
0
votes
2answers
553 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 ...