The fire-and-forget tag has no wiki summary.
5
votes
2answers
254 views
WCF client causes server to hang until connection fault
The below text is an effort to expand and add color to this question:
How do I prevent a misbehaving client from taking down the entire service?
I have essentially this scenario: a WCF service is up ...
5
votes
4answers
573 views
How can I fire and forget a process in Perl?
Can somebody please tell me how to fire-and-forget a process in Perl? I've already looked at ruby: how to fire and forget a subprocess? for doing the same in Ruby.
3
votes
2answers
87 views
How can I increase the success of “window.OnBeforeUnload” to send an Ajax ping?
I've read dozens of questions and answers on S.O., and none of them answer my particular question... most of them center around popping up a "Oooh, you need to save" message... that is not my need.
I ...
2
votes
4answers
279 views
C# Improvement on a Fire-and-Forget
Greetings
I have a program that creates multiples instances of a class, runs the same long-running Update method on all instances and waits for completion. I'm following Kev's approach from this ...
1
vote
1answer
194 views
C# ThreadPool or BeginInvoke without EndInvoke
On the net there a very different opinions on how to implement a fire and forget pattern.
Some say that it is no issue to call BeginInvoke without calling EndInvoke if one has to implement a ...
1
vote
2answers
141 views
WCF “Fire and Forget” method is not allowing host execution to continue as expected
I have a windows service hosting a singleton WCF service which caches a large amount of data. On start up of the windows service I am doing the following:
// start client service
wcfService= ...
1
vote
2answers
418 views
Fire and Forget Sql Server Stored Procedure from C#
I'm doing a queued jobs and at the end of each job I want to fire an SP which will do a lot of processing on data. So I don't want to wait for completion of the SP and I just want to move to next job ...
1
vote
4answers
423 views
PHP exec(), can I fire and forget?
I have been trying to execute a java application through a php form .. so the submit button fire an execute command:
exec("java -jar c:\edu.uniroma3.jar c:\parameter2BPassed");
The first path ...
0
votes
2answers
82 views
Java “Fire and Forget” Thread
I have a method
public static void startAnimation() {
new AnimationThread().run();
}
where AnimationThread implements runnable and its constructor is:
public AnimationThread() {
new ...
0
votes
3answers
221 views
Fire-and-forget in PHP
Final update
Seems like I did make a very simple error. Since I already have a stream implementation I can just not start reading from the stream :D
I'm trying to achieve fire-and-forget like ...
0
votes
1answer
125 views
Stored procedures fire and forget with Entity Framework
I am using the Entity Framework 4.1 within an application. One of the requirments is to execute some stored procedures on the database out of which some take quite some time. Further, those stored ...
0
votes
2answers
308 views
How to fire-and-forget in WCF when using wsHttpBinding
I have a WCF service hosted in IIS and it is consumed by an ASP.NET application. Service and client are on diferent servers and communicate over internet.
Message security over wsHttpBinding is used ...