There are many inquiries out there about the ASP.Net MVC error "Sorry, an error occurred while processing your request". Unfortunately, I was not able to find any that actually discuss what is really occurring. Understandably they focus on the underlying error rather than the immediate source and cause of the message. Consequently these solutions give widely varying answers to the same question.
Here are a few examples:
Sorry, an error occurred while processing your request. in MVC3 Model Entities
Sorry, an error occurred while processing your request C# and Ajax
http://forums.asp.net/t/1661793.aspx/1/10?Sorry+an+error+occurred+while+processing+your+request+
http://forums.gbpvr.com/showthread.php?53184-Sorry-an-error-occurred-while-processing-your-request
Based on the stack trace data in many of the answers I researched it appears that this may be triggered in the System.Web.Mvc.ControllerActionInvoke class. It seems in general to be a direct result of an unhandled error in the executing ActionResult method.
I'd like to understand the term "processing your request" in the message. Based on the way I've seen the error display, it seems unlikely that this is referring to the HTTP Request. Perhaps something more granular in the MVC architecture? Can someone shed some more light on where this message originates and why?