I have a strange problem in my MVC 4.0 application. I use REST web services (Amazon Associate) . I created a method, which I use from everywhere. The shortened version is th
When I was getting the exception and call stack shown above, it was because I was trying to do a "fire and forget" execution using async, which was a really bad idea. I switched to spinning of a new thread for what I wanted and the crashes went away.