I have a restful WCF service that I need to call asynchronously from within an MVC controller.
What would be the "lightest" way of going about this?
Kindness,
Dan
|
I have a restful WCF service that I need to call asynchronously from within an MVC controller. What would be the "lightest" way of going about this? Kindness, Dan |
|||
|
|
|
I'd issue an |
|||
|
|
|
I guess you are aware of the AsyncController which you can use as the base class for your MVC controller (rather than plain old Controller). This will offer you a mechanism for calling methods asynchrously. See here for more details: |
|||
|
|