Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've created a Web Api filter (using System.Web.Http.Filters.ActionFilterAttribute) but I am unable to get it to work inside of ASP.Net MVC 4. I tried adding it to the RegisterGlobalFilters() method but that didn't work.

So if one is using Web Api hosted in ASP.Net MVC how does one register filters?

share|improve this question

2 Answers

up vote 25 down vote accepted

The following code, in my Global.asax, works for me:

public static void RegisterWebApiFilters(System.Web.Http.Filters.HttpFilterCollection filters)
{
  filters.Add(new MyWebApiFilter());
}

protected void Application_Start()
{
  RegisterWebApiFilters(GlobalConfiguration.Configuration.Filters);
}
share|improve this answer
That is registering a MVC filter. That filter will not get applied to a controller that inherits from ApiController. – Shane Courtrille Mar 1 '12 at 18:11
Pasted the wrong code. Updated to reflect correct code. – Dave Bettin Mar 1 '12 at 18:21
2  
Updated example based on Nuzzolilo's post. For those using pre RC it was GlobalFilterCollection – Shane Courtrille Jun 21 '12 at 13:30
3  
Can someone explain what's going on here? Why are there two sets of Global filters? Doesn't that make 'Global' an oxymoron? – Luke Puplett Jun 27 '12 at 9:55
1  
One set of filters is for MVC and the other is for Web API. They are two separate things and normally you wouldn't want filters for one being applied to the other. – Shane Courtrille Aug 29 '12 at 15:26
show 2 more comments

As of MVC 4 RC, the correct class name is HttpFilterCollection:

public static void RegisterWebApiFilters(System.Web.Http.Filters.HttpFilterCollection filters)
{
    filters.Add(new MyWebApiFilter());
}

protected void Application_Start()
{
    RegisterWebApiFilters(GlobalConfiguration.Configuration.Filters);
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.