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

I have an ASP.NET MVC application running on IIS 7.5. Somehow, on my machine, requests ending in '.js' are not caught by the corresponding controller action while they are on a colleague's machine.

The action has the ActionName attribute specified:

ActionName("Scripts.js")
public ActionResult ScriptsJS()
{
    ...
}

When I issue a request to 'Scripts.js', I get a 404 while for my colleague's machine, he gets the result of the ScriptsJS action.

I figure it's something I have to configure in IIS, since the same code runs fine on my colleague's machine (also running IIS 7.5).

So, how do I configure IIS to pass requests ending in '.js' to the MVC handler?

share|improve this question

2 Answers

ASP.NET does not process every request sent the web server, for example is does not need to handle html, jpg, css files as they exist on disk and can be sent straight to the user. If you want to configure IIS to pass any of these files to ASP.NET then you will need to configure a Handler Mapping for your site.

For how to do this look at this question How to add wildcard mapping

share|improve this answer
Thanks. That technique was already applied to the code but as my answer shows, I didn't have the Microsoft-recommended IIS configuration. +1 Because your answer may be of use to others. – Sandor Drieënhuizen Aug 10 '11 at 12:36
up vote 0 down vote accepted

It turned out that installing "IIS Recommended Configuration" using the Web Platform Installer resolved this issue.

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.