im using an Ajax.Request to hit a java servlet and do some processing. during this time, if the user feels the process is taking too long, he/she can hit a cancel button to kill the request... by calling the
abort function off of the transport, will that kill the processing that my server is doing as well or just make the client think that the process has ended?
right now i cant seem to get the servlet to stop processing even though the abort method has been called, im starting to think the abort method isnt the magic bullet that i was lazily hoping for.... can anyone help me out?
my call looks like this to kick off the process for the user:
var myRequest = new Ajax.Request(... blah blah);
and inside my cancel function, it looks like this:
myRequest.transport.abort();
thanks for the help!
BD
_______________________________________________ Rails-spinoffs mailing list [email protected] http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
