Tagged Questions
The request-cancelling tag has no wiki summary.
6
votes
5answers
531 views
how to cancel http request using javascript
i have a page on which there an event handler attached to an onclick event. when the event fires it passes contents of a textbox to a GET request. since the url is not in the same domain so i create a ...
5
votes
1answer
122 views
How to correctly cancel an outstanding Ajax request that will never complete?
This question is like another, except that one is asked in the context of JQuery, which I don't use.
Ajax code on my page issues a POST every ten seconds. Once in a while -- every ~600 requests -- ...
5
votes
3answers
1k views
cancelPreviousPerformRequestWithTarget is not canceling my previously delayed thread started with performSelector
I've launched a delayed thread using performSelector but the user still has the ability to hit the back button on the current view causing dealloc to be called. When this happens my thread still ...
4
votes
6answers
216 views
How to cancel a deeply nested process
I have a class that is a "manager" sort of class. One of it's functions is to signal that the long running process of the class should shut down. It does this by setting a boolean called ...
4
votes
2answers
622 views
Are PHP processes called via AJAX cancelled on “ESC”?
If I do an AJAX call, would the AJAX call be canceled if the user pressed "ESC" or leaved that page?
If the AJAX call gets canceled, would my PHP script continue to run until it finished what it was ...
3
votes
4answers
161 views
Java Threads: Shutdown flag vs Catching Exception
In threads when dealing with cancelation, you often you see code like this
while (!shutdown) {
.. do something, if a blocking call, then it will throw the interrupted exception
try { .. some more ...
3
votes
1answer
134 views
iPhone - cancelPerformSelectorWithTarget not working
If I do this in a subclass of UIView:
[self performSelector:@selector(doSomething) withObject:nil afterDelay:5];
Then cancel it like this (I've tried both versions):
[[NSRunLoop currentRunLoop] ...
2
votes
2answers
320 views
How can you tell if the user hit cancel during a download from a Java servlet?
How can you tell if the user hit cancel during a download from a Java servlet? What seem to happen for me with IE, the output stream println() blocks. The used hit cancel, but is there a way to time ...
2
votes
1answer
180 views
Can a http server detect that a client has cancelled their request?
My web app must process and serve a lot of data to display certain pages. Sometimes, the user closes or refreshes a page while the server is still busy processing it. This means the server will ...
2
votes
1answer
255 views
Canceling BackgroundWorker within the Thread
I have a longer running multi-step process using BackgroundWorker and C#. I need to be sure that each step is completed successfully before moving on to the next step. I have seen many references to ...
1
vote
2answers
145 views
TCP connections with overlapped I/O
Is it possible to initiate a TCP connection request with overlapped I/O, and cancel it before the connection has been completed in Windows? I need to support at least Windows XP SP2.
1
vote
1answer
194 views
How to cancel a running AXIS 1.4 SOAP request?
Is it possible to cancel a SOAP request (Axis 1.4, Java 1.6) that's currently executing?
I'm using the interfaces generated with WSDL2Java, so the call is something like ...
1
vote
3answers
690 views
Symfony : ajax call cause server to queue next queries
I've a problem with my application when an ajax call on the server takes too much time : it queue all the others queries from the user until it's done server side (I realized that canceling the call ...
1
vote
1answer
89 views
Does SOAP support canceling a call?
When using the SOAP protocol, is it possible to cancel a pending remote function call using SOAP?
I see three different situations:
A) Making a request to a service that takes a long time to ...
1
vote
2answers
1k views
background worker class cancellation, sets cancellation pending flag but doesn't quit
I call
obackgroundworker.CancelAsync();
on a background worker currently doing some work in another thread and then using
while (obackgroundworker.IsBusy == true)
to wait for it to finish ...
1
vote
3answers
2k views
how to cancel WCF service call?
Hi
I have a WCF function that is executing long time, so I call the function in UI with backgraundworker... I want to give a feature to cancel the execution, so I abort IComunicationObject, the ...
0
votes
0answers
140 views
WPF WebBrowser NavigatingCancelEventArgs.cancel is not fired in Windows 7 x64 environment
I wanted to use a wpf webbrowser to open a site in my desktop application.
Then I needed to listen to the webbrowser request and cancel specific ones.
I opened first the website using the following ...
0
votes
6answers
1k views
jQuery - Cancel form submit (using “return false”?)?
I'm running into a bit of trouble while trying to cancel the submit of a form. I've been following this tutorial (even though i'm not making a login script), and it seems to be working for him.
...
0
votes
1answer
550 views
How to cancel a long running database insert/update operation from ASP.NET UI when the the operation is being oerformed by a Windows service
I see a question about this here.
However, in my case, It is the windows service which in running the long running insert/update on a table and I need to cancel the operation from my ASP.NET ...
0
votes
6answers
5k views
How to cancel ajax request that has run (on server side)
I was wondering if there's a simple way to cancel an AJAX request?
Beyond just calling an 'abort' on the XMLHTTPRequest on the client side, is there a way to easily stop the server process? The ...