In WebAPI, when I wanted to do some work with the http request before the controller was called, all I did was create a DelegatingHandler and did my pre and post controller operations in there, then register in the WebApiConfig. It would appear that this is not the same with internet applications.
I'm having a hard time finding where to intercept the request, where can I do this?