HttpWebRequest allows you to send the web service requests asynchronously, but those methods use callbacks, so they won't block after your two requests are kicked off.
To wait for both callbacks, you could wrap each call as a Task and then fire off both tasks in parallel using synchronous http calls. You'd then use a WaitAll that would wait for both tasks to finish. The benefit of this is that WaitAll and Task make it easy to implement a timeout, whereas with asynchronous requests it can be a challenge to handle timeouts.
I'm on a mobile now, so I can't grab the code, but this site looks like a good starting point.
.NET Task Goodness
Remember, pass your http function in to the Task constructor. Once both tasks are created, add them to a List. Your WaitAll will use this list to check for completion.
If you don't like using the synchronous http calls, you could create a thread safe counter that is incremented in the asynchronous callback functions. Your controller would then sit in a while loop waiting for a timeout or for the counter to equal two.
I guess you could also use an asynchronous controller for my first answer which would still use multiple-threaded sync calls, but the asynchronous controller would free the operation from the processor.