In my MVC4 app I need to add a controller for uploading and processing large files. Immediately after the file is uploaded I need to start async processing of that file and
Your LongRunning method is synchronously sleeping 10 seconds. Change it so the sleep happens in the task instead.