Hi I`m trying to do something that seems kinda easy, and is documented that way but for some reason its not going that easy.
Basiclly I wrote something like this:
Have you tried overriding the OnActionExecuting like:
OnActionExecuting
public override void OnActionExecuting(ActionExecutingContext filterContext) { base.OnActionExecuting(filterContext); }
This is the way I write action filters and haven't had a problem with them being called.