1
vote
2answers
16 views
.NET Client/Server Scaleability & Asynchronous I/O - Excess Thread Issues
I have a pretty simple question which perhaps someone familiar with Server/Client design & the Asynchronous I/O paradigm of .NET could answer quickly...
I'm writing a server-s …
2
votes
3answers
78 views
Downloading HTTP URLs asynchronously in C++
What's a good way to download HTTP URLs (e.g. such as http://0.0.0.0/foo.htm ) in C++ on Linux ? I strongly prefer something asynchronous. My program will have an event loop that …
0
votes
2answers
59 views
What can cause select to block in Python?
Here's a snippet of code I'm using in a loop:
while True:
print 'loop'
rlist, wlist, xlist = select.select(readers, [], [], TIMEOUT)
print 'selected'
# do stuff
…
1
vote
1answer
21 views
What are the implications for Async I/O (BeginWrite/BeginRead) with a chain of streams?
Suppose I have a chain of streams, that does Compression -> Encryption -> File I/O.
In C#, using synchronous I/O, it would look something like this:
int n=0;
byte[] buffe …
0
votes
2answers
63 views
How can I call this webservice asynchronously?
In Visual Studio I created a web service (and checked "generate asynchronous operations") on this URL:
http://www.webservicex.com/globalweather.asmx
and can get the data out …
0
votes
1answer
36 views
jQuery AJAX: collecting multiple asynchronous results
I'm running a validation on form data, such that when somebody hits the submit button it checks the form's contents first. A number of fields (could be zero, could be more than one …
0
votes
1answer
16 views
Callback function is not executed in an asynchronous call
I am trying to make a simple asynchronous call with WCF, but the callback function is never executed. Can anyone tell me what is wrong with the code?
I am using visual studio 2008 …
0
votes
2answers
36 views
Sockets Asyn Connection
I am new to Async Socket Connection. Can you please explain. How does this technology work.
There's an existing application (server) which requires socket connections to transmit d …
0
votes
1answer
75 views
Boost Asio async_read doesn’t stop reading?
So,
I've been playing around with the Boost asio functions and sockets (specifically the async read/write). Now, I thought that boost::asio::async_read only called the handler wh …
2
votes
5answers
86 views
Dynamically creating asynchronous message queues in Java
I need to create asynchronous message queues dynamically in Java. My use case is sending email via multiple SMTP servers: I need to enforce that emails to the same SMTP server are …
2
votes
3answers
92 views
How to know when an asynchronous call really begins?
I want to be able to measure the time it take to execute an asynchronous method.
When I call the method synchronously, I run the following code and I get the exact amount of time …
0
votes
2answers
24 views
In ASP.NET asynchronous pages, is it possible to execute 2 sequential, asynchronous tasks?
In ASP.NET, you can run asynchronous tasks as follows:
PageAsyncTask task1 =
new PageAsyncTask(BeginAsyncOperation1, EndAsyncOperation1, TimeoutAsyncOperation1, state);
RegisterA …
0
votes
0answers
16 views
Some Async Socket Code - Help with Garbage Collection?
Hi all,
I think this question is really about my understanding of Garbage collection and variable references. But I will go ahead and throw out some code for you to look at.
// …
3
votes
3answers
78 views
Asynchrony and .NET events?
I'm really embarrassed to ask such a trivial question but debugging some software now convinced me I don't really understand this issue:
How does .NET events work seen from an alt …
0
votes
4answers
63 views
Order of event handler execution
If I set up multiple event handlers, like so:
_webservice.RetrieveDataCompleted += ProcessData1;
_webservice.RetrieveDataCompleted += ProcessData2;
what order are the handlers r …
