1
vote
1answer
134 views

What Should I be using here? Threading? Async?

I am not sure what to use in this scenario. I have an asp.net web api method that basically does this Finds points of interests from foursquare near user. Uses the foursquare locations to do ...
1
vote
2answers
28 views

DbConnection.Open() works but dbConnection.OpenAsync() doesn't

This is a tough one. Using the exact same query string, the exact same following code: using (var db = new SqlConnection(queryString)) { await db.OpenAsync(); var results = await ...
0
votes
1answer
34 views

Synchronous controller with Task.Factory.StartNew versus Asynchronous controller in MVC 4 versus Service Broker Activation

I have a project running in MVC 4 on a .Net 4.0 VS2010 environment. I need to have a long running sql task handled without making the user wait on the front end for that long. The MVC 4 web ...
0
votes
0answers
47 views

What is the least ugly way to make async HttpRequests [closed]

I have a utility Winforms app. Currently it makes a series of HttpWebRequests, processes the output, and displays the results all in the GUI thread. I want to parallelize the Http requests with the ...
1
vote
2answers
86 views

.NET async, can a single thread time-slice between tasks?

I'm trying to get a grasp on asynchronous programming in C#/.NET. I read an article (link) on Brown University's website for the cs168 course that defines asynchronous programming as interleaving ...
0
votes
0answers
42 views

long running sql procedure hangs website

I have an MVC 4 web application that calls the business layer which calls a data layer method ExecuteSP asynchronously. The data layer method ExecuteSP calls a long running stored procedure like this: ...
1
vote
2answers
88 views

What is the difference between making an Async web service call and making a Synchronous web service call in another thread?

And/or, when to use either one? Is it a matter of preference or is there a technical difference? Bit of background on why I am asking: I have an app running a .NET 2.0 CF app and the user is making ...
5
votes
2answers
90 views

Are unresettable “flags” threadsafe in C#/.NET?

(Note: I already asked this question, but the answer was specific to Java, and so I am asking the same question for C# and the .NET framework. It is NOT a duplicate.) I have been using this pattern ...
1
vote
3answers
76 views

Async two-way communication with Windows Named Pipes (.Net)

I have a windows service and a GUI that need to communicate with each other. Either can send messages at any time. I'm looking at using NamedPipes, but it seems that you cant read & write to the ...
1
vote
1answer
45 views

How to catch 404 WebException for WebClient.DownloadFileAsync

This code: try { _wcl.DownloadFile(url, currentFileName); } catch (WebException ex) { if (ex.Status == WebExceptionStatus.ProtocolError && ex.Response != null) if ((ex.Response as ...
0
votes
1answer
27 views

HttpClient is not found in .NET 4.5

I am trying to use the new HttpClient in .NET 4.5, but Visual Studio complains that it doesn't exist. I have System.Net, but when I type System.Net.Http, it complains for that too. Am I supposed to ...
-1
votes
1answer
35 views

Invoking assemblies asynchronously

I have a 'small' problem in one of my projects. I have to invoke 2 assemblies stored in Byte() I don't want them to be written to the disk, to do so, I do Sub Main() ...
0
votes
0answers
44 views

UdpClient.BeginReceive callback: IAsyncResult comes null

I've a code that read UDP messages received on a multicast port. I got some time a weird behavior, but it's very rare: The IAsyncResult callback parameter of the BeginReceive method is null. And I ...
3
votes
3answers
143 views

Processing a large file in .Net

The Problem I need to be able to save and read a very big data structure using C#. The structure itself is rather simple, it's a very long array of a simple structs of a constant size. just an ...
-1
votes
0answers
22 views

Why Blocking consider as Asynchronous call?

Why is a .NET blocking asynchronous call still considered to be asynchronous even though it will block the caller?
0
votes
0answers
62 views

Async Controller Action Re-Called after one minute

I have an action on an MVC3 Async Controller which processes csv files, the async part of which is as follows: [HandleError] [NoAsyncTimeout] public void UploadAsync(int jobId) { var ...
8
votes
3answers
257 views

Am I doing something wrong or is it not possible to extract a zip file in parallel?

I created this to test out a parallel extract: public static async Task ExtractToDirectoryAsync(this FileInfo file, DirectoryInfo folder) { ActionBlock<ZipArchiveEntry> block = ...
0
votes
1answer
52 views

Can you call Wait() on a task multiple times?

I want to run initializations of some objects asynchronously, but some objects depend on others being initialized. And then all objects need to be initialized before the rest of my application ...
0
votes
1answer
244 views

How to update gui in c# wpf from asynchronous method callback

I've search on stackoverflow and also in net and I couldn't find solution to my problem. I read from a stream in async way. I want callback to update gui [STAThread] private void ...
0
votes
1answer
43 views

Timeout does not apply to asynchronous operations. What is the idea behind it?

IHttpAsyncHandler, asynchronous webservices, HttpWebRequest.BeginGetResponse,... seem never timeout. Timeout seems to apply only to synchronous operations. I really want to know the reason why ...
1
vote
1answer
90 views

Asynchronously fill a Strongly Typed Dataset

I believe everyone is familiar with the traditional way of filling data into a data bound control using visual studio. The VS creates a strongly typed DataSet and call the Fill function of the ...
0
votes
0answers
27 views

How can I send part of code asynch?

In my response, I have a function that load a model-data of point (Google point) and serialize it, sending to the client when finish. The code looks like: IList<PuntoMappa> punti = new ...
12
votes
2answers
112 views

How to document exceptions of async methods?

A sample method with XML documentation: // summary and param tags are here when you're not looking. /// <exception cref="ArgumentNullException> /// <paramref name="text" /> is null. ...
0
votes
1answer
26 views

What is a good use-case for reading a HttpWebRequest's response stream asynchronously?

I have this code that uses a lot of HttpWebRequest in parallel. It currently does that synchronously, but I'm changing that to asynchronous using BeginGetResponse in order to increase performances. ...
3
votes
2answers
163 views

C# async method that also has anonymous callback handlers does not flow correctly

Below is the code for a C# async method that also has callback handlers for two of the WebClient control's events: DownloadProgressChanged and OpenReadCompleted. When I run the code, initially it ...
0
votes
1answer
54 views

WebRequest.GetResponse() Times Out After A Couple of Requests

I'm calling a third party web API to update some of our data on their side. I've been submitting about five jobs in quick succession and, without fail, the first two requests are working properly. The ...
3
votes
1answer
100 views

Asynchronous TcpClient not reading all the data in time

The code below works if there's not a lot of data from the server, or if there's a lot data and I uncomment the Thread.Sleep(500) line. I however don't want to use the Thread.Sleep line, but if I ...
3
votes
1answer
110 views

How to monitor for async/await deadlocks in MVC4?

After reading Best Practices in Asynchronous Programming i decided to test the deadlock behavior in MVC4. After creating the website from the Intranet template I modified the Index action like this: ...
0
votes
1answer
67 views

Adding robust time-outs to a C# asynchronous callback scenario?

I came across this C# code sample on MSDN that shows how to use a delegate to wrap a callback method for an asynchronous DNS lookup operation: http://msdn.microsoft.com/en-us/library/ms228972.aspx ...
1
vote
1answer
123 views

SMTP.SendAsync not working correctly

I am trying to get familiar with the smtp.SendAsync and for some reason I am not able to get the mailmessage to send Async. Here is what I've tried. //smtp.SendAsync(mm, null)); Error, Async ...
1
vote
1answer
206 views

.Net Async methods in PowerShell: Net.Mail.SmtpClient::Send() not always synchronous? (inconsistent via scheduled task)

Problem: PowerShell script that sends email works when invoked from an interactive session, but fails when invoked via Scheduled Task. This seems to be caused by the SMTP session being interrupted ...
0
votes
1answer
52 views

what does it mean when an exception properly handled by the UI thread causes the Windows Form application to quietly exit?

My understanding is that in a windows forms application if the UI thread throws an exception and it is not handled by user code the application will crash in a manner that is obvious to the user. (A ...
0
votes
0answers
108 views

Properly Closing a FileStream after Async Timeout

I'm writing a C# application (limited to .NET framework 4.0 or lower (i.e. no Read/WriteAsync)) that is responsible for reading / writing files between a Windows (7 or later) machine and a NFS-mounted ...
17
votes
2answers
487 views

Architecture for async/await

If you are using async/await at a lower level in your architecture, is it necessary to "bubble up" the async/await calls all the way up, is it inefficient since you are basically creating a new ...
1
vote
0answers
37 views

Dispose and asynchrony [duplicate]

While studying the following snippet of code from the project I work on var storedObject = _objectStorage.OpenObject(objectId); PerformActions(storeObject); I discovered that storedObject object is ...
0
votes
1answer
93 views

Limiting HttpWebResponse stream reading speed

I use this code to read a HttpWebResponse stream Stream stm = httpResp.GetResponseStream(); Stream fs = new FileStream(filename, FileMode.Append, FileAccess.Write); ...
0
votes
1answer
81 views

Proper way to make an async call

I have a situation where scalability is of utmost importance. I have an API endpoint which has to make a call to a 3rd party web service and it could take over 10 seconds to complete. What I'm ...
0
votes
2answers
163 views

Calling an external process in C#/WinForms makes UI unresponsive. Why?

I have a Winforms app that lives in the taskbar area. A window opens up for logging output. Now, in my component (still on UI Thread here) I need to call an external process that runs 5-15min and ...
1
vote
3answers
49 views

What is the significance of “WorkerSupportCancellation” in Backgroundworker C#

I guess the default behaviour is, the user can cancel the long running process when I implement it with background worker. What is the significance of WorkerSupportCancellation" ? If I don't use ...
2
votes
3answers
119 views

Mutex/Monitor not working for C# Thread synchronization

I am trying to only allow one Thread to access a non-static method from an object. I don't really create Threads but use Tasks instead. I tried to lock the method down to one usage but it just isn't ...
1
vote
2answers
91 views

How to handle this asynchronous programming scenario in C#

I just had an interview 5 minutes back. I was given this scenario and he asked me the question on how to handle this in C# 1.0 or 2.0. He said there is a basic feature to handle this, I wasn't sure. ...
2
votes
2answers
820 views

Multi-threaded async web service call in c# .net 3.5

I have 2 ASP.net 3.5 asmx web services, ws2 and ws3. They contain operations op21 and op31 respectively. op21 sleeps for 2 seconds and op31 sleeps for 3 seconds. I want to call both op21 and op31 from ...
5
votes
1answer
199 views

Is the new C# async feature implemented strictly in the compiler

As a C# programmer whose interested in exploring "how things work", i am interested in understanding a bit more about the process that makes the new async feature work. I have followed Eric Lippert's ...
1
vote
2answers
99 views

Counting threads with lock and without (c#)

Grant Crofton's answer to the question "Unordered threads problem" has a comment: "And if you remove the lock the final count might be less than 100." Why? Here is the code for context class ...
1
vote
1answer
77 views

Writing a wrapper for an async method

I have a TransactionOperator class which exposes the following static async method: public static async Task<bool> ProcessTransactionAsync(Transaction transaction) { var ...
0
votes
2answers
83 views

.NET Rx Koans: Why does this test case fail?

While looking for material to learn Rx, I found this: Reactive Extensions (Rx) Koans. From the intro: Definition of ‘Koan’ Kōans is a zen word meaning the enlightenment or awakening of a person, ...
0
votes
1answer
130 views

Writing multithreaded methods using async/await in .Net 4.5

I have a small query. I admit that I haven't use multithreading much before .Net 4.5, but with the new async/await functionality I decided to give it a try. I started experimenting with it and all ...
6
votes
2answers
215 views

How to cancel NetworkStream.ReadAsync without closing stream

I am trying to use NetworkStream.ReadAsync() to read data but I cannot find how to cancel the ReadAsync() once called. For background, the NetworkStream is provided to me by a connected ...
1
vote
1answer
70 views

use subfolders in homegroup

I'm trying to build a metro-app which shall load an image file from another computer in the same homegroup (all computers use windows 8 x64 with working homegroup). All samples I found do not use ...
1
vote
0answers
69 views

.net SoundPlayer event never firing

So I'm trying to use a soundplayer to load a wav file, and then fire an event after it's done loading it. Reason being is that I don't want my program to continue on until the WAV is fully loaded and ...

1 2 3 4 5 14