active questions tagged asynchronous - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T04:17:59Z http://stackoverflow.com/feeds/tag/asynchronous http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1626499/catch-unhandled-socketexception-during-asynchronous-httpwebresponse-read 0 Catch unhandled SocketException during asynchronous HttpWebResponse read AlexMinza 2009-10-26T18:29:17Z 2009-11-30T22:36:01Z <p>All the asynchronous calls to HttpWebRequest.BeginGetResponse/EndGetResponse and HttpWebResponse.GetResponseStream().BeginRead/EndRead are made from try/catch blocks, however, these exceptions propagate and do not leave a chance handle them and stop application termination:</p> <blockquote> <p>Unhandled Exception: System.IO.IOException: Unable to read data from the transport connection: <strong>An established connection was aborted by the software in your host machine.</strong> ---> System.Net.Sockets.SocketException: An established connection was aborted by the software in your host machine</p> <p>Unhandled Exception: System.IO.IOException: Unable to read data from the transport connection: <strong>An existing connection was forcibly closed by the remote host.</strong> ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host</p> </blockquote> <pre><code>Unhandled Exception: System.IO.IOException: Unable to read data from the transport connection: An established connection was aborted by the software in your host machine. ---&gt; System.Net.Sockets.SocketException: An established connection was aborted by the software in your host machine at System.Net.Sockets.Socket.BeginReceive(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, AsyncCallback callback, Object state) at System.Net.Sockets.NetworkStream.BeginRead(Byte[] buffer, Int32 offset, Int32 size, AsyncCallback callback, Object state) --- End of inner exception stack trace --- at System.Net.Sockets.NetworkStream.BeginRead(Byte[] buffer, Int32 offset, Int32 size, AsyncCallback callback, Object state) at System.Net.PooledStream.BeginRead(Byte[] buffer, Int32 offset, Int32 size, AsyncCallback callback, Object state) at System.Net.ConnectStream.BeginReadWithoutValidation(Byte[] buffer, Int32 offset, Int32 size, AsyncCallback callback, Object state) at System.Net.ConnectStream.BeginRead(Byte[] buffer, Int32 offset, Int32 size, AsyncCallback callback, Object state) at System.IO.Compression.DeflateStream.ReadCallback(IAsyncResult baseStreamResult) at System.Net.LazyAsyncResult.Complete(IntPtr userToken) at System.Net.ContextAwareResult.CompleteCallback(Object state) at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) at System.Net.ContextAwareResult.Complete(IntPtr userToken) at System.Net.LazyAsyncResult.ProtectedInvokeCallback(Object result, IntPtr userToken) at System.Net.Sockets.BaseOverlappedAsyncResult.CompletionPortCallback(UInt32 errorCode, UInt32 numBytes, NativeOverlapped* nativeOverlapped) at System.Threading._IOCompletionCallback.PerformIOCompletionCallback(UInt32 errorCode, UInt32 numBytes, NativeOverlapped* pOVERLAP) </code></pre> <p>Actual code fragments:</p> <pre><code>public static RequestState StartDownload(string url, string referer, RequestData data, DownloadEventHandler completedHandler, DownloadExceptionHandler failedHandler) { RequestState state = null; try { var request = CreateWebRequest(url, referer, data); state = new RequestState(url, data, request) { DownloadCompleted = completedHandler; DownloadFailed = failedHandler; } state.ResponseAsyncResult = request.BeginGetResponse(WebResponseCallback, state); state.AsyncTimeoutHandle = ThreadPool.RegisterWaitForSingleObject(state.CompletedHandle, DownloadTimeoutCallback, state, TimeSpan.FromSeconds(data.DownloadTimeout), true); } catch(Exception ex) { Trace.TraceError(ex.ToString()); } return state; } private static void DownloadTimeoutCallback(object state, bool timedOut) { var requestState = (RequestState)state; try { requestState.AsyncTimeoutHandle.Unregister(null); if(timedOut) { requestState.Request.Abort(); } } catch(Exception ex) { Trace.TraceError(ex.ToString()); } } private static void WebResponseCallback(IAsyncResult asyncResult) { var state = (RequestState)asyncResult.AsyncState; try { var response = (HttpWebResponse)state.Request.EndGetResponse(asyncResult); WebResponse(state, response); } catch (Exception ex) { Trace.TraceError(ex.ToString()); } } private static void WebResponse(RequestState state, HttpWebResponse response) { state.ActualUrl = state.Request.Address.ToString(); state.Response = response; BeginRead(state); } private static void BeginRead(RequestState state) { var stream = state.Response.GetResponseStream(); state.ReadAsyncResult = stream.BeginRead(state.Buffer, 0, state.BufferSize, ReadCallBack, state); } private static void ReadCallBack(IAsyncResult asyncResult) { var state = (RequestState)asyncResult.AsyncState; try { var stream = state.Response.GetResponseStream(); var bytesRead = stream.EndRead(asyncResult); if (bytesRead &gt; 0) { //there is still more data to read state.AppendResponseData(state.Buffer, 0, bytesRead); BeginRead(state); } else { state.Response.Close(); state.InvokeDownloadCompleted(); } } catch(Exception ex) { Trace.TraceError(ex.ToString()); } } </code></pre> <p>PS: A bug report was filed at Microsoft Connect <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=510564" rel="nofollow">https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=510564</a></p> http://stackoverflow.com/questions/1820770/what-is-the-right-way-to-spawn-thread-for-database-io-in-asmx-web-service 0 what is the right way to spawn thread for database IO in asmx web service? matti 2009-11-30T16:16:10Z 2009-11-30T18:27:45Z <p>Hello. I have a short lock guarded section in a method (that serves the request entirely) that makes all initializations (etc. log-related). So only 1 thread can be there at time. In this section I also load system data from database if not loaded. This is naturally executed only on 1st request and it does not matter it takes time and no threads can propagate since it's done only once (by dummy request).</p> <pre> static public void LoadAllSystemData() { SystemData newData = new SystemData(); //own type (etc. Hashtables in Hashtables). LoadTables(ref newData); LoadClasses(ref newData); LoadAllSysDescrs(ref newData); LoadFatFields(ref newData); LoadAllFields(ref newData); _allData = newData; } </pre> <p>After the lock-guarded section the system data is accessed from concurrent threads only by reading and no locks are needed:</p> <pre> static public Hashtable GetTables() { return _allData.Tables; } </pre> <p>Now the lock guarded section must have method that checks if system data is older than 24h and refresh it. If it done just by calling method (from lock guarded section) below that thread takes a long time and no other thread can enter the lock guarded section.</p> <pre> static public void CheckStatus() { DateTime timeStamp = DateTime.Now; TimeSpan span = timeStamp.Subtract(_cacheTimeStamp); if (span.Hours >= 24) { LoadAllSystemData(); _cacheTimeStamp = DateTime.Now; } } </pre> <p>My questions are:</p> <ol> <li><p>How to spawn a non-threadpool thread best way to handle IO so the threadpool worker thread can propagate and all the threads spend minimum time in lock guarded section?</p></li> <li><p>Is the _allData = newData; in LoadAllSystemData atomic? If it is, it feels the best way to implement that so GetXxx-methods like GetTables do not need any locking!</p></li> <li><p>Is there any way to get LoadAllSystemData to be called before requests? For example on iisreset?</p></li> </ol> <p>Thanks in advance for your answers! </p> http://stackoverflow.com/questions/1804748/how-to-i-use-my-own-interface-with-operationcontext-current-getcallbackchannel 0 How to I use my own interface with OperationContext.Current.GetCallbackChannel? Ian Ringrose 2009-11-26T16:51:36Z 2009-11-30T08:11:26Z <p>see also <a href="http://stackoverflow.com/questions/1808598/why-do-i-get-invalidcastexception-from-operationcontext-current-getcallbackchanne">Why do I get InvalidCastException from OperationContext.Current.GetCallbackChannel&lt;>()</a></p> <p>I wish to pass my own interface to OperationContext.Current.GetCallbackChannel, as I wish to make Asynchronous calls to the client(s) and hence need to add the “BeginMethod()” etc to the interface. </p> <p>I can anexception saying it can’t cast to the interface if I pass any interface apart from the one that is named in the ServiceContract for the server I am implementing.</p> <p>E.g. I have</p> <pre><code>&lt;ServiceContract(CallbackContract:=GetType(IClient))&gt; </code></pre> <p>On the server contract</p> <p>And a interface defined as a subclass of IClient that adds the “BeginMethod()” etc, but I can’t ask for that interface from:</p> <pre><code> OperationContext.Current.GetCallbackChannel&lt;IClientWithAsycMethods&gt;() </code></pre> http://stackoverflow.com/questions/1748413/async-execution-of-tasks-for-a-web-application 0 async execution of tasks for a web application Stefano Borini 2009-11-17T12:03:56Z 2009-11-30T07:18:35Z <p>A web application I am developing needs to perform tasks that are too long to be executed during the http request/response cycle. Typically, the user will perform the request, the server will take this request and, among other things, run some scripts to generate data (for example, render images with povray).</p> <p>Of course, these tasks can take a long time, so the server should not hang for the scripts to complete execution before sending the response to the client. I therefore need to perform the execution of the scripts async, and give the client a "the resource is here, but not ready" and probably tell it a ajax endpoint to poll, so it can retrieve and display the resource when ready.</p> <p>Now, my question is not relative to the design (although I would very much enjoy any hints on this regard as well). My question is: does a system to solve this issue already exists, so I do not reinvent the square wheel ? If I had to, I would use a process queue manager to submit the task and put a HTTP endpoint to shoot out the status, something like "pending", "aborted", "completed" to the ajax client, but if something similar already exists specifically for this task, I would mostly enjoy it.</p> <p>I am working in python+django.</p> <p><strong>Edit</strong>: Please note that the main issue here is not how the server and the client must negotiate and exchange information about the status of the task.</p> <p>The issue is how the server handles the submission and enqueue of very long tasks. In other words, I need a better system than having my server submit scripts on <a href="http://www.vub.ac.be/BFUCC/LSF/" rel="nofollow">LSF</a>. Not that it would not work, but I think it's a bit too much...</p> <p><strong>Edit 2</strong>: I added a bounty to see if I can get some other answer. I checked pyprocessing, but I cannot perform submission of a job and reconnect to the queue at a later stage.</p> http://stackoverflow.com/questions/1815573/threading-timer-invokes-asynchronously-many-methods 0 Threading.Timer invokes asynchronously many methods Dimitar 2009-11-29T13:40:05Z 2009-11-29T13:55:17Z <p>Hi guys! Please help! I call a threading.timer from global.asax which invokes many methods each of which gets data from different services and writes it to files. My question is how do i make the methods to be invoked on a regular basis let's say 5 mins?</p> <p>What i do is: in Global.asax I declare a timer</p> <pre><code>protected void Application_Start() { TimerCallback timerDelegate = new TimerCallback(myMainMethod); Timer mytimer = new Timer(timerDelegate, null, 0, 300000); Application.Add("timer", mytimer); } </code></pre> <p>the declaration of myMainMethod looks like this:</p> <pre><code>public static void myMainMethod(object obj) { MyDelegateType d1 = new MyDelegateType(getandwriteServiceData1); d1.BeginInvoke(null, null); MyDelegateType d2 = new MyDelegateType(getandwriteServiceData2); d2.BeginInvoke(null, null); } </code></pre> <p>this approach works fine but it invokes myMainMethod every 5 mins. What I need is the method to be invoked 5 mins after all the data is retreaved and written to files on the server.</p> <p>How do I do that?</p> http://stackoverflow.com/questions/998708/trade-offs-implementing-versioning-of-services-accessed-by-reliable-async-messagi 1 Trade-offs implementing versioning of services accessed by reliable async messaging? Nat 2009-06-15T22:18:33Z 2009-11-29T05:00:04Z <p>Clients of HTTP services can specify the version (and format) they understand by requesting or posting data with a specific content type. The HTTP protocol defines error codes for reporting that the content type is not understood.</p> <p>Messaging systems (e.g. JMS, MQ Series and the like) do not have a standard way of describing message protocol versions and content formats.</p> <p>How have you implemented versioning for services accessed over reliable, asynchronous messaging?</p> <p>Some possibilities:</p> <ul> <li>The sender indicates the version as a message property</li> <li>Queue or Topic names include the protocol version of the messages accepted at that destination</li> <li>The version is in the payload of the message</li> </ul> <p>I'm sure there are other ways. How did you do it? What advantages and disadvantages did you find?</p> http://stackoverflow.com/questions/1808417/adding-a-child-to-viewport3d-asynchronously-gives-this-api-was-accessed-with-arg 0 Adding a child to Viewport3D asynchronously gives "This API was accessed with arguments from the wrong context." Loy 2009-11-27T12:14:01Z 2009-11-27T12:14:01Z <p>When I try to add 3D-content to a Viewport3D, asynchronously, this results in "This API was accessed with arguments from the wrong context." in a TargetInvocationException. </p> <p>The 3D-content is generated from the data of a 3D-scanning device. The communication&amp;calculations needed for that are done in a separate thread. First, I tried to acces the viewport3D from that thread. I realized this should be done by the GUI-thread, so now I use this code:</p> <pre><code> ModelVisual3D model = new ModelVisual3D(); model.Content = scanline; DispatcherOperation dispOp = this.viewport.Dispatcher.BeginInvoke( new AddModelDelegate(StartAddModel), model); } private void StartAddModel(ModelVisual3D model) { this.viewport.Children.Add(model); //model is not in the context of this current thread. //Throws exception: "This API was accessed with arguments from the wrong context." } private delegate void AddModelDelegate(ModelVisual3D model); </code></pre> <p>It seems that the object named "model" is not in the context of the current thread. How can I fix this? Is there a way to get the model to the context of the Dispatcher? Or is this way of doing this just not the way to go here?</p> http://stackoverflow.com/questions/1808269/skipping-data-in-winsock 0 Skipping data in winsock? cvb 2009-11-27T11:43:33Z 2009-11-27T12:01:35Z <p>Is it possible to skip a portion of the incoming data on a TCP stream socket, instead of having to read it into a buffer? Preferably, I'm looking for something that also works asynchronously.</p> http://stackoverflow.com/questions/1805958/python-asynchronous-callbacks-and-generators 1 Python asynchronous callbacks and generators spinlock 2009-11-26T22:32:10Z 2009-11-27T09:33:23Z <p>Hello,</p> <p>I'm trying to convert a synchronous library to use an internal asynchronous IO framework. I have several methods that look like this:</p> <pre><code>def foo: .... sync_call_1() # synchronous blocking call .... sync_call_2() # synchronous blocking call .... return bar </code></pre> <p>For each of the synchronous functions (<code>sync_call_*</code>), I have written a corresponding async function that takes a a callback. E.g.</p> <pre><code>def async_call_1(callback=none): # do the I/O callback() </code></pre> <p>Now for the python newbie question -- whats the easiest way to translate the existing methods to use these new async methods instead? That is, the method <code>foo()</code> above needs to now be:</p> <pre><code>def async_foo(callback): # Do the foo() stuff using async_call_* callback() </code></pre> <p>One obvious choice is to pass a callback into each async method which effectively "resumes" the calling "foo" function, and then call the callback global at the very end of the method. However, that makes the code brittle, ugly and I would need to add a new callback for every call to an <code>async_call_*</code> method.</p> <p>Is there an easy way to do that using a python idiom, such as a generator or coroutine?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1049001/get-notification-when-nsoperationqueue-finishes-all-tasks 1 Get notification when NSOperationQueue finishes all tasks porneL 2009-06-26T13:00:14Z 2009-11-27T08:49:53Z <p><code>NSOperationQueue</code> has <code>waitUntilAllOperationsAreFinished</code>, but I don't want to wait synchronously for it. I just want to hide progress indicator in UI when queue finishes.</p> <p>What's the best way to accomplish this?</p> <p>I can't send notifications from my <code>NSOperation</code>s, because I don't know which one is going to be last, and <code>[queue operations]</code> might not be empty yet (or worse - repopulated) when notification is received.</p> http://stackoverflow.com/questions/1804013/tornado-web-persistent-connections 0 Tornado Web & Persistent Connections Engrost 2009-11-26T14:34:08Z 2009-11-26T16:46:25Z <p>How can I write Http server in TornadoWeb that will support persistent Connections.</p> <p>I mean will be able to receive many requests and answer to them without closing connection. How does it actually work in async?</p> <p>I just want to know how to write handler to handle persistent connection. How actually would it work? </p> <p>I have handler like that:</p> <pre><code>class MainHandler(RequestHandler): count = 0 @asynchronous def post(self): #get header content type content_type = self.request.headers.get('Content-Type') if not content_type in ACCEPTED_CONTENT: raise HTTPError(403, 'Incorrect content type') text = self.request.body self.count += 1 command = CommandObject(text, self.count, callback = self.async_callback(self.on_response)) command.execute() def on_response(self, response): if response.error: raise HTTPError(500) body = response.body self.write(body) self.flush() </code></pre> <p>execute calls callback when finishes.</p> <p>is my asumption right that with things that way post will be called many times and for one connection count will increase with each httprequest from client? but for each connection I will have separate count value? </p> http://stackoverflow.com/questions/762056/how-to-make-wsdl-exe-not-generate-the-xxxasync-methods-i-still-want-begin-endxxx 1 How to make WSDL.exe NOT generate the XxxAsync methods (I still want Begin/EndXxx) skb 2009-04-17T20:21:12Z 2009-11-26T15:13:34Z <p>Does anyone know how to do this?</p> http://stackoverflow.com/questions/769040/need-help-with-asynchronous-operation 1 Need help with asynchronous operation John 2009-04-20T16:28:50Z 2009-11-26T13:24:09Z <p>I'm relatively new to asynchronous and service-oriented programming and want to do the following:</p> <ol> <li>Fire off a stored procedure in a database that could run for minutes or even hours. </li> <li>Return a code to the caller of a job id that the client can use to track the progress of the job.</li> </ol> <p>This seems like a simple task, but being new to asynchronous coding, I'm concerned about unknown pitfalls. Is there a well defined pattern for this type of functionality? If so, does it have a name and what is a good resource?</p> http://stackoverflow.com/questions/1763712/aiowrite-on-linux-with-rtkaio-is-sometimes-long 0 aio_write on linux with rtkaio is sometimes long Drakosha 2009-11-19T14:36:21Z 2009-11-26T13:05:29Z <p>I'm using async io on linux with rtkaio library. In my tests everything works perfectly, but, in my real application i see that aio_write which is supposed to return very fast, is very slow. It can take more than 100 milis to write a 128KB to a O_DIRECT padded file. Both my test and the application use same I/O size, i check on the same file system (GFS).</p> <p>I added counting and i see that there are about 50% of async io operations that are short (shorter then 2 milis) and 50% that are long (longer than 2 milis).</p> <p>I also checked that the test and the application both use the same rtkaio library.</p> <p>I'm pretty lost, anyone any ideas where should i look?</p> <p>Another my related question: <a href="http://stackoverflow.com/questions/1799537/proc-sys-fs-aio-nr-is-never-higher-than-1024-aio-on-linux">http://stackoverflow.com/questions/1799537/proc-sys-fs-aio-nr-is-never-higher-than-1024-aio-on-linux</a></p> http://stackoverflow.com/questions/1799537/proc-sys-fs-aio-nr-is-never-higher-than-1024-aio-on-linux 0 /proc/sys/fs/aio-nr is never higher than 1024 (AIO on linux) Drakosha 2009-11-25T19:54:09Z 2009-11-26T05:04:22Z <p>I'm trying to use async io on linux. As far as i know there're 3 options:</p> <ul> <li>kernel calls (io_submit and friends)</li> <li>libRT - uses threads in user space</li> <li>libRTKAIO - wrapper of kernel calls which does not use threads</li> </ul> <p>I'm using the last option, and i see, that in my unit test that runs a lot of async io requests in multiple threads, /proc/sys/fs/aio-nr is never higher than 1024. I wonder where lays such limitation.</p> <p>I've set /proc/sys/fs/aio-max-nr to 16M, so it's not an issue.</p> <p>A related question (also mine) <a href="http://stackoverflow.com/questions/1763712/aiowrite-on-linux-with-rtkaio-is-sometimes-long">http://stackoverflow.com/questions/1763712/aiowrite-on-linux-with-rtkaio-is-sometimes-long</a></p> http://stackoverflow.com/questions/1046023/sql-async-query-problem 2 sql async query problem.... Sean Ochoa 2009-06-25T20:22:18Z 2009-11-26T04:46:18Z <p>So, why doesn't this ever make it to the callback function? </p> <pre><code>using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Data.SqlClient; namespace sqlAsyncTesting { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { using (SqlConnection conn = new SqlConnection(@"Data Source = bigapple; Initial Catalog = master; Integrated Security = SSPI; Asynchronous Processing = true;")) { conn.Open(); SqlCommand cmd = new SqlCommand(@"WAITFOR DELAY '00:03'; Select top 3 * from sysobjects;", conn); IAsyncResult result = cmd.BeginExecuteReader(new AsyncCallback(HandleCallback), cmd, CommandBehavior.CloseConnection); } } private void HandleCallback(IAsyncResult result) { SqlDataReader dr; SqlCommand _this = (SqlCommand)result.AsyncState; if (result.IsCompleted) { dr = _this.EndExecuteReader(result); } else dr = null; DataTable dt = new DataTable(); DataSet ds = new DataSet(); dt.Load(dr); ds.Tables.Add(dt); dr.Close(); Complete(ds); } private void Complete(DataSet ds) { string output = string.Empty; foreach (DataColumn c in ds.Tables[0].Columns) { output += c.ColumnName + "\t"; } output += "\r\n"; foreach (DataRow dr in ds.Tables[0].Rows) { foreach (object i in dr.ItemArray) { output += i.ToString() + "\t"; } output += "\r\n"; } } } </code></pre> <p>}</p> http://stackoverflow.com/questions/1798357/the-easiest-way-to-perform-asynchronous-operations-in-java-web-applications 5 The easiest way to perform asynchronous operations in Java web applications Dan 2009-11-25T16:57:28Z 2009-11-25T22:50:45Z <p>I have Java servlet-based web applications. I would like to implement some operations in asynchronous manner, like for example writing to a log. </p> <p>I would like to avoid JMS overhead and do something simple. </p> <p>Managing threads myself doesn’t seem such a good idea in a server environment, you would probably need to tap into server thread pool etc. What is the best alternative for simple asynchronous operation?</p> <p>Edit:</p> <p>Just for clarification, since many suggested using log4j or other logging library, writing to a log operation is here more of an example. I am interested how to perform asynchronously any operation that need not be performed sequentially. Idea is to reply to user immediately and to continue processing costly operation in another thread. </p> <p>In regards to log issue, we have an audit log we implemented to write a lot of data to a database and is used by the user during audit operations and at Help Desk. Writing a lot of information to DB can be very costly. We do use log4j for system log and since the appender is file appender we have no performance issues with our system log.</p> http://stackoverflow.com/questions/1799692/has-anyone-done-a-performance-analysis-of-boostasio 0 Has anyone done a performance analysis of boost::asio ? Vainstah 2009-11-25T20:19:05Z 2009-11-25T20:45:40Z <p>I require socket-like local IPC. I used named pipes and overlapped IO on windows and I want to rewrite the application to boost::ASIO so that it can use UNIX domain sockets as well.</p> <p>I've recently reviewed parts of the libevent library and I know it only supports socket() and select() for windows in the 1.4 version. As overlapped IO is very efficient leaving it out is obviously an unacceptable trait which is being adressed in version 2 (which is in alpha). Another example of sub-optimal implementation is the use of red-black trees vs. prio-queues for the timeout logic which was <a href="http://libev.schmorp.de/bench.html" rel="nofollow">adressed</a> somewhere along the line.</p> <p>Does anyone have any opinions on the performance characteristics of boost vs libevent/libev. Does it have any glaring undesireable traits on certain platforms ? My aim for this question is that I do not want to pidgeon-hole the ASIO library unless I absolutely must. I want to know if boost::asio uses the most optimal OS primitives in the most optimal way.</p> http://stackoverflow.com/questions/1795439/scroll-to-top-of-page-after-async-post-back 0 Scroll to top of page after async post back JackM 2009-11-25T08:26:32Z 2009-11-25T08:48:34Z <p>So I need to scroll to the top of the page after an async post back in an asp.net update panel.</p> <p>The code I used was this:</p> <pre><code>Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestEventHandler); function EndRequestEventHandler(sender, args) { scrollTo(0,0); } </code></pre> <p>However, I only want this to be run when I click on a certain button which causes the async postback.</p> <p>How do I wire this event up in my code behind button event?</p> <p>Any help would be appreacited, thanks!</p> http://stackoverflow.com/questions/1788838/what-is-the-trade-of-between-oneway-and-async-calls-for-broadcasting-events-to-cl 0 What is the trade of between OneWay and Async calls for broadcasting events to clients? (WCF) Ian Ringrose 2009-11-24T09:09:04Z 2009-11-25T08:32:57Z <p>I am writing a WCF (netTcpBinding planned at present) client/server application that has to support a “handful” of clients including sending events to the clients.</p> <blockquote> <p>I do not wish the server to block while the clients process the events.</p> </blockquote> <p>Logically I cannot see match difference between marking the callback methods as “OneWay” or calling them with "being_MethodName(..)"</p> <p><strong>So what are the pros and cons of each technique?</strong> </p> <p><hr></p> <p>I am finding from my readings that the error handling of OneWay messages is complex and you can unexpectedly get the channel going bad... E.g the are not fire and forget!</p> http://stackoverflow.com/questions/1794402/asynchronous-waiting-while-c-function-is-executing 0 Asynchronous waiting while C# function is executing Lynxy 2009-11-25T03:11:32Z 2009-11-25T05:56:08Z <p>I have a blocking function that executes an asynchronous MySQL query and returns the result when it is obtained. The reason is is asynchronous is this program is not allowed to lock up during a query.</p> <p>The function is called when the user presses a button, so the function may get called several times before the first query completes. I thought I could add a boolean to check whether or not a query is executing and have the function wait until it's done before continuing, but it is not working as intended. There is some issue with the two DoEvents() I use. If you comment out either one, it runs just fine, except the UI freezes.</p> <p>How can I make the function do a non-blocking wait while a query is executing, as well as do a non-blocking wait while the query itself is being fetched? I would really prefer to keep this on one thread, as the function itself is blocking to the code that called it. Any help would b e greatly appreciated!</p> <pre><code> public Exception LastError; public MySqlConnection Conn; public MySqlDataReader Reader; public bool IsExecuting = false; public MySqlDataReader MySQL_Query(string Query, [Optional] params string[] Values) { while (IsExecuting) { System.Windows.Forms.Application.DoEvents(); System.Threading.Thread.Sleep(20); } if (IsConnected() == false) ConnectToDatabase(); for (int i = 0; i &lt; Values.Length; i++) Values[i] = MySQL_SafeValue(Values[i]); if (Reader != null &amp;&amp; Reader.IsClosed == false) Reader.Close(); IsExecuting = true; try { MySqlCommand Cmd = new MySqlCommand(String.Format(Query, Values), Conn); IAsyncResult aRes = Cmd.BeginExecuteReader(); while (!aRes.IsCompleted) { System.Windows.Forms.Application.DoEvents(); System.Threading.Thread.Sleep(20); } Reader = Cmd.EndExecuteReader(aRes); IsExecuting = false; } catch (Exception e) { IsExecuting = false; LastError = e; return null; } return Reader; } </code></pre> http://stackoverflow.com/questions/1790456/is-there-any-circumstance-in-which-calling-enterwritelock-on-a-readerwriterlocksl 4 Is there any circumstance in which calling EnterWriteLock on a ReaderWriterLockSlim should enter a Read lock instead? MKing 2009-11-24T14:34:43Z 2009-11-24T18:16:44Z <p>I have a seemingly very simple case where I'm using System.Threading.ReaderWriterLockSlim in the 3.5 version of the .NET Framework. I first declare one, as shown here: </p> <p><img src="http://odeh.temp.s3.amazonaws.com/lock%5Fdeclaration.bmp" alt="Lock Declaration"></p> <p>I put a break point right before the lock is acquired and took a screen shot so you can see (in the watch window) that there are currently no locks held: </p> <p><img src="http://odeh.temp.s3.amazonaws.com/prelock.bmp" alt="pre lock acquisition"></p> <p>Then, after calling EnterWriteLock, as you can see I am holding a <i>Read Lock</i>. </p> <p><img src="http://odeh.temp.s3.amazonaws.com/postlock.bmp" alt="post lock acquisition"> </p> <p>This seems like truly unexpected behavior and I can't find it documented anywhere. Does anyone else know why this happens? In other places in my code (earlier), this exact same line of code correctly obtains a write lock. Consistently, however, across multiple systems it instead obtains a read lock at this place in the call stack. Hope I've made this clear and thanks for taking the time to look at this.</p> <p>--- EDIT--- </p> <p>For those mentioning asserts... this just confuses me further: </p> <p><img src="http://odeh.temp.s3.amazonaws.com/assert.bmp" alt="post assert"> </p> <p>I really can't say how it got past this assertion except that perhaps the Watch Window and the Immediate window are wrong (perhaps the value is stored thread locally, as another poster mentioned). This seems like an obvious case for a volatile variable and a Happens Before relationship to be established. Either way, several lines later there is code that asserts for a write lock and does not have one. I have set a break point on the only line of code in the entire program that releases this lock, and it doesn't get called after the acquisition shown here so that must mean it was never actually acquired... right?</p> http://stackoverflow.com/questions/1789369/asp-net-updatepanel-cancel-previous-asyncpostback 0 ASP.NET UpdatePanel Cancel Previous AsyncPostBack Zuhaib 2009-11-24T11:08:48Z 2009-11-24T11:24:27Z <p>I have more than one UpdatePanel inside a webform. Inside a UpdatePanel I have a button which triggers AsyncPostBack. According to my requirement I need to cancel any previous pending AsyncPostBack triggered by this button before triggering a new AsyncPostBack, <strong>but without aborting any other postback.</strong></p> <p>For instance when I cancel postback for the update panel upPostback I don't want to cancel the postback for the update panel upPostback2.</p> <p><strong>Mark Up:</strong></p> <pre><code>&lt;asp:UpdatePanel ID="upPostback" runat="server" UpdateMode="Conditional"&gt; &lt;ContentTemplate&gt; &lt;asp:HiddenField ID="hiddenCounter" runat="server" Value="" /&gt; &lt;asp:Button ID="btnDoPostback" runat="server" Text="Click Me" OnClick="OnDoPostBack_Click" OnClientClick="CancelPreviousPostBack()" /&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; &lt;asp:UpdatePanel ID="upPostBack2" runat="server" UpdateMode="Conditional"&gt; &lt;ContentTemplate&gt; &lt;asp:Button ID="btnDoPostBack2" runat="server" Text="Click Me2" OnClick="OnDoPostBack2_Click" /&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; </code></pre> <p>The function <strong>CancelPreviousPostBack</strong> checks if there is an AsyncPostBack going on if yes then calls the abortPostBack method of the PageRequestManager to abort any existing AsyncPostBack's and then continue with the new post back.</p> <p><strong>JavaScript:</strong></p> <pre><code>function CancelPreviousPostBack() { var prm = Sys.WebForms.PageRequestManager.getInstance(); var isInPostback = prm.get_isInAsyncPostBack(); if (isInPostback) { // cancel the previous postback prm.abortPostBack(); var hiddenCounter = document.getElementById('hiddenCounter'); hiddenCounter.value = counter; counter++; } } </code></pre> <p><strong>But when the abortPostBack function of the PageRequestManager is called it aborts all the AsyncPostBacks going on in the form.</strong></p> <p>I couldn't find any method to find out which control triggered the postback if I call the CancelPreviousPostBack function on the OnClientClick Event of the Button. The only way to find out the Id of the control that triggered the postback was to add an event handler to the add_beginRequest method of the PageRequestManager. So I modified my code.</p> <p><strong>Mark Up:</strong></p> <pre><code>&lt;asp:Button ID="btnDoPostback" runat="server" Text="Click Me" OnClick="OnDoPostBack_Click" /&gt; </code></pre> <p><strong>JavaScript:</strong></p> <pre><code>var counter = 0; var _isInitialLoad = true; function pageLoad() { if (_isInitialLoad) { _isInitialLoad = false; // hook the events var prm = Sys.WebForms.PageRequestManager.getInstance(); prm.add_beginRequest(CancelPreviousPostBack); } } function CancelPreviousPostBack(sender, args) { var prm = Sys.WebForms.PageRequestManager.getInstance(); var isInPostback = prm.get_isInAsyncPostBack(); var postBackElementId = args.get_postBackElement().id; if (isInPostback &amp;&amp; postBackElementId == 'btnDoPostback') { // cancel the previous postback prm.abortPostBack(); var hiddenCounter = document.getElementById('hiddenCounter'); hiddenCounter.value = counter; counter++; } } </code></pre> <p><strong>Now when there are pending postback's prm.get_isInAsyncPostBack() should return true, but strangely it returns false.</strong> Even if it returned true it doesn't solve my problem prm.abortPostBack() function aborts all the ongoing postbacks.</p> http://stackoverflow.com/questions/1784928/c-four-patterns-in-asynchronous-execution 8 C# -Four Patterns in Asynchronous execution threadpool 2009-11-23T18:07:39Z 2009-11-23T19:19:53Z <p>I heard that there are four patterns in asynchronous execution .</p> <p><em>"There are four patterns in async delegate execution: Polling, Waiting for Completion, Completion Notification, and "Fire and Forget".</em> </p> <p>When I have the following code :</p> <pre><code>class AsynchronousDemo { public static int numberofFeets = 0; public delegate long StatisticalData(); static void Main() { StatisticalData data = ClimbSmallHill; IAsyncResult ar = data.BeginInvoke(null, null); while (!ar.IsCompleted) { Console.WriteLine("...Climbing yet to be completed....."); Thread.Sleep(200); } Console.WriteLine("..Climbing is completed..."); Console.WriteLine("... Time Taken for climbing ....{0}", data.EndInvoke(ar).ToString()+"..Seconds"); Console.ReadKey(true); } static long ClimbSmallHill() { var sw = Stopwatch.StartNew(); while (numberofFeets &lt;= 10000) { numberofFeets = numberofFeets + 100; Thread.Sleep(10); } sw.Stop(); return sw.ElapsedMilliseconds; } } </code></pre> <p>1) What is the pattern the above code implemented ?</p> <p>2) Can you explain the code ,how can i implement the rest ..?</p> http://stackoverflow.com/questions/1774202/not-calling-delegate-endinvoke-can-cause-memory-leak-a-myth 8 Not calling Delegate.EndInvoke can cause memory leak... a myth? Jeff Cyr 2009-11-21T01:35:46Z 2009-11-23T15:26:49Z <p>There have been a lot of discussion around this and everyone tend to agree that you should always call Delegate.EndInvoke to prevent a memory leak (even Jon Skeet said it!).</p> <p>I always followed this guideline without questioning, but recently I implemented my own AsyncResult class and saw that the only resource that could leak is the AsyncWaitHandle.</p> <p>(In fact it doesn't really leak because the native resource used by the WaitHandle is encapsulated in a SafeHandle which has a Finalizer, it will add pressure on the finalize queue of the garbage collector though. Even so, a good implementation of AsyncResult will only initialize the AsyncWaitHandle on demand...)</p> <p>The best way to know if there is a leak is just to try it:</p> <pre><code>Action a = delegate { }; while (true) a.BeginInvoke(null, null); </code></pre> <p>I ran this for a while and the memory stay between 9-20 MB.</p> <p>Let's compare with when Delegate.EndInvoke is called:</p> <pre><code>Action a = delegate { }; while (true) a.BeginInvoke(ar =&gt; a.EndInvoke(ar), null); </code></pre> <p>With this test, the memory play between 9-30 MG, weird eh? (Probably because it takes a bit longer to execute when there is an AsyncCallback, so there will be more queued delegate in the ThreadPool)</p> <p>What do you think... "Myth busted"?</p> <p>P.S. ThreadPool.QueueUserWorkItem is a hundred more efficient than Delegate.BeginInvoke, its better to use it for fire &amp; forget calls.</p> http://stackoverflow.com/questions/1782077/c-asp-net-asynchronous-thread-execution 1 C# /ASP.NET Asynchronous Thread Execution threadpool 2009-11-23T09:39:29Z 2009-11-23T09:59:16Z <p>I have some doubts on executing the following :</p> <pre><code>public class Test { delegate int TestDelegate(string parameter); static void Main() { TestDelegate d = new TestDelegate(PrintOut); d.BeginInvoke("Hello", new AsyncCallback(Callback), d); // Give the callback time to execute - otherwise the app // may terminate before it is called Thread.Sleep(1000); Console.ReadKey(true); } static int PrintOut(string parameter) { Console.WriteLine(parameter); return 5; } static void Callback(IAsyncResult ar) { TestDelegate d = (TestDelegate)ar.AsyncState; Console.WriteLine("Delegate returned {0}", d.EndInvoke(ar)); } } </code></pre> <p>1 ) The TestDelegate already pointing to a Method ( <strong>"PrintOut"</strong>).Why do Again we are passing another method ("<strong>callback</strong>") in d.BeginInvoke("Hello",new <strong>AysncCallback(Callback)</strong>,d);.Does it mean d.BeginInvoke executes "PrintOut" and "Callback" parallely?.Can you please explain line by line what exactly going on?</p> <p>2) Normally, Aysnchronous execution means the execution of a "thread" is not predictable or fastest execution ?</p> <p>3) <code>TestDelegate d = (TestDelegate)ar.AsyncState;</code> "TestDelegate" d is a delegate.How is it possible to cast it to filed or property? ( <code>ar.AsyncState</code> )</p> <p>4) can you provide me some live example where do i need to use this Asynchronous execution?</p> http://stackoverflow.com/questions/1780303/tornado-and-python-3-x 0 Tornado and Python 3.x tosh 2009-11-22T22:45:06Z 2009-11-22T23:59:52Z <p>I really like <a href="http://www.tornadoweb.org/" rel="nofollow">Tornado</a> and I would like to use it with Python 3, though it is written for Python versions 2.5 and 2.6.</p> <p>Unfortunately it seems like the project's source doesn't come with a test suite. If I understand correctly the WSGI part of it wouldn't be that easy to port as it's spec is not ready for <a href="http://www.wsgi.org/wsgi/Amendments%5F1.0#Python3.0" rel="nofollow">Python 3 yet (?)</a>, but I am rather interested in Tornado's async features so WSGI compatibility is not my main concern even if it would be nice.</p> <p>Basically I would like to know what to look into/pay attention for when trying to port or whether there are already ports/forks already (I could not find any using google or browsing <a href="http://github.com/facebook/tornado/network" rel="nofollow">github</a>, though I might have missed something).</p> http://stackoverflow.com/questions/1744839/actionscript-wait-for-asynchronous-event-within-function 0 Actionscript Wait For Asynchronous Event Within Function unknown (google) 2009-11-16T21:02:42Z 2009-11-22T20:18:41Z <p>Hello,</p> <p>I need a little help with asynchronous events in ActionScript 3. I am writing a simple class that has two functions, both of which return strings(logic and code outlined below). Due to the asynchronous nature of the AS3 HTTPService, the return value line is always reached before a result is returned from the service, yielding an empty string. Is it possible to include some type of logic or statement in this function that will make it wait for a response before returning a value? Is there a framework that handles this type of stuff?</p> <ol> <li>Call service</li> <li>Parse JSON result, isolate value of interest</li> <li><p>Return Value</p> <pre><code>public function geocodeLocation(address:String):Point { //call Google Maps API Geocode service directly over HTTP var httpService:HTTPService = new HTTPService; httpService.useProxy = false; httpService.url = //"URL WILL GO HERE"; httpService.method = HTTPRequestMessage.GET_METHOD; var asyncToken : AsyncToken = httpService.send(); asyncToken.addResponder( new AsyncResponder( onResult, onFault)); <pre><code>function onResult( e : ResultEvent, token : Object = null ) : void { //parse JSON and get value, logic not implemented yet var jsonValue:String="" } function onFault( info : Object, token : Object = null ) : void { Alert.show(info.toString()); } return jsonValue; //line reached before onResult fires </code></pre> } </code></pre></li> </ol> http://stackoverflow.com/questions/1776667/how-to-get-the-maximum-outbound-requests-when-parellellizing-asynchronous-calls 1 How to get the maximum outbound requests when parellellizing asynchronous calls? Jader Dias 2009-11-21T20:24:45Z 2009-11-22T17:06:01Z <p>Analysing the code below in action through Fiddler, I realized that using Parallel Extensions I can get at maximum 2 outbound requests:</p> <pre><code>new string[] { "http://stackoverflow.com", "http://superuser.com", "http://serverfault.com", "http://stackexchange.com" } .AsParallel() .Select(a =&gt; HttpWebRequest.Create(a).GetResponse()) .ToArray() ; </code></pre> <p>What method should I use to maximize the number of outbound requests?</p> http://stackoverflow.com/questions/1777861/mvc-futures-async-with-a-custom-delegate 0 MVC futures async with a custom delegate DennisP 2009-11-22T05:02:02Z 2009-11-22T13:58:04Z <p>I'm trying to use async from the asp.net mvc futures, using my own async delegate. Haven't figured out how to make it work. Here's the code:</p> <pre><code> public delegate String GetString(); public String getHello() { return "Hello"; } public IAsyncResult BeginHello(AsyncCallback cb, Object state) { GetString dlgt = getHello; return dlgt.BeginInvoke(cb, state); } public ActionResult EndHello(IAsyncResult asyncResult) { return View(); } </code></pre> <p>In EndHello, asyncResult.IsCompleted=True, but asyncResult.AsyncState==null. I expected to have AsyncState=="Hello".</p> <p>What am I missing?</p> <p>Also, does it even make sense to arrange it this way? Or does this cause it to use the same thread pool anyway? Basically my thought was to put a datareader in my asynchronous function, thinking that I could loop through the reader populating a collection of objects and only return when they're done. Is it better to use BeginExecuteReader and populate the objects on the main thread?</p>