vote up 0 vote down star

I have a page that needs to combine data from four different webrequests into a single list of items. Currently, I'm running these sequentially, appending to a single list, then binding that list to my repeater.

However, I would like to be able to call these four webrequests asynchronously so that they can run simultaneously and save load time. Unfortunately, all the async tutorials and articles I've seen deal with a single request, using the finished handler to continue processing.

How can I perform the four (this might even increase!) simultaneously, keeping in mind that each result has to be fed into a single list?

many thanks!

EDIT: simplified example of what i'm doing:

var itm1 = Serialize(GetItems(url1));
list.AddRange(itm1);
var itm2 = Serialize(GetItems(url2));
list.AddRange(itm2); 

string GetItems(string url)
{
     var webRequest = WebRequest.Create(url) as HttpWebRequest;
     var response = webRequest.GetResponse() as HttpWebResponse;

     string retval;
     using (var sr = new StreamReader(response.GetResponseStream()))
     { retval = sr.ReadToEnd(); }
     return retval;
}
flag

43% accept rate
Have any code you can post to show us how you're currently que-ing these requests up? – Justin Niessner Oct 21 at 15:46
added simplified example of how i'm doing this. Serialize() just converts the json string to the class specified for the List collection – Josh Oct 21 at 16:12
I'm thinking instead of running the Request asynchronously with BeginGetResponse, which doesn't appear to save me anything, I need to run the GetItems method asynchronously, so that 4 requests can run simultaneously. I thought about using threads before and now that I'm looking at my problem it looks like the best thing to do is issue each GetItems on a separate thread, but how do I synchronize these so that the application runs them simultaneously, then aggregates all their results? – Josh Oct 21 at 16:25
@Josh - provide the separate threads with a completion callback that they execute when they're finished, which synchronizes access to the list. – Jeff Sternal Oct 21 at 16:29

3 Answers

vote up 0 vote down

How about launching each request on their own separate thread and then appending the results to the list?

link|flag
vote up 0 vote down

Hi,

you can test this following code:

Parallel.Invoke(() => {
//TODO run your requests... });

You need reference Parallel extensions : http://msdn.microsoft.com/en-us/concurrency/bb896007.aspx

link|flag
vote up 1 vote down

This should be really simple since your final data depends on the result of all the four requests.

What you can do is create 4 async delegates each pointing to the appropriate web method. Do a BeginInvoke on all of them. And then use a WaitHandle to wait for all. There is no need to use call backs, in your case, as you do not want to continue while the web methods are being processed, but rather wait till all web methods finish execution.

Only after all web methods are executed, will the code after the wait statement execute. Here you can combine the 4 results.

Here's a sample code I developed for you:

class Program
    {
        delegate string DelegateCallWebMethod(string arg1, string arg2);

        static void Main(string[] args)
        {
            // Create a delegate list to point to the 4 web methods
            // If the web methods have different signatures you can put them in a common method and call web methods from within
            // If that is not possible you can have an List of DelegateCallWebMethod
            DelegateCallWebMethod del = new DelegateCallWebMethod(CallWebMethod);

            // Create list of IAsyncResults and WaitHandles
            List<IAsyncResult> results = new List<IAsyncResult>();
            List<WaitHandle> waitHandles = new List<WaitHandle>();

            // Call the web methods asynchronously and store the results and waithandles for future use
            for (int counter = 0; counter < 4; )
            {
                IAsyncResult result = del.BeginInvoke("Method ", (++counter).ToString(), null, null);
                results.Add(result);
                waitHandles.Add(result.AsyncWaitHandle);
            }

            // Make sure that further processing is halted until all the web methods are executed
            WaitHandle.WaitAll(waitHandles.ToArray());

            // Get the web response
            string webResponse = String.Empty;
            foreach (IAsyncResult result in results)
            {
                DelegateCallWebMethod invokedDel = (result as AsyncResult).AsyncDelegate as DelegateCallWebMethod;
                webResponse += invokedDel.EndInvoke(result);
            }
        }


        // Web method or a class method that sends web requests
        public static string CallWebMethod(string arg1, string arg2)
        {
            // Code that calls the web method and returns the result

            return arg1 + " " + arg2 + " called\n";
        }

    }
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.