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 server is using Apache.
Thanks
|
|
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 server is using Apache. Thanks
|
||
|
|
|
|
No. There's definitely no simple way. I can think of some complex ways, but they would be unreliable. You'll probably have more luck developing a process for reversing the changes from a request you've just run (I'm assuming that's the reason you would want to stop it.) |
||||
|
|
|
Initiate another Ajax request. I found this thread by trying to figure out how to prevent a previous request from being interrupted when another is called. |
||
|
|
|
|
The easiest way would be just to send a 503 (or similar) HTTP Response header and abort the server-side application (or just abort the application). Assuming no data was sent and/or you checked the HTTP response header client side you can just treat it as a failed request. |
||
|
|
|
|
The short answer is "no". Unless you're talking about a very long running backgrounded process on the server side, in which case you could have a second Ajax request initiate a stop on it. But if you're talking about a regular request to an Apache/PHP server, then no... identifying which Apache thread your request was running in would be trouble enough. It would be much easier to verify your Ajax request somehow before even starting the process; make sure it's what you want to be running. You could have a Javascript confirmation process as well if you need the user to be aware that what they are doing cannot be interrupted. As Steven posted, having a reversal process sounds like it might be in your best interest as well. |
||
|
|
|
|
How could this be done? I used abort(); but this only prevents the result from showing in the browser but will not stop the request from running on the server. How could it be stopped with the second Ajax request? Thanks! |
||
|
|
|
|
there are no good ways to stop the request itself over the network (as many have said), but it's relatively easy to stop the effects of the request. i.e. on the server-side: you could on the client-side: you could call
|
||
|
|