I have two Windows 2008 R2 Servers running an asp.net 4.0 app. The server that is having problems actually loads asp.net pages just fine, but if there are any ajax calls they don't work. I noticed there are no .net 4.0 specific Handler Mappings in IIS for this server like the other server has.

It's literally missing all .net 4.0 mappings (.axd, .soap, .cshtm, .ashx and even .aspx). I've tried running "aspnet_regiis -ir" but that didn't help. Should I reinstall the .net 4.0 framework? Manually add all these missing mappings? Is there something else going on?

What I don't want to do is add a ton of handlers to a web.config, they aren't needed on the server that works so it shouldn't be needed on the broken one.

link|improve this question
feedback

2 Answers

Thanks for your answer but I have already checked the root handlers which are the same as the application handlers and missing all the .net 4 ones.

Problem solved. All I had to do was to execute aspnet_regiis in %WinDir%\Microsoft.NET\Framework64\v4.0.30319

link|improve this answer
feedback
up vote 0 down vote accepted

It turns out that the root node in IIS had all the appropriate handlers, but for some reason the web site in question did not have the handlers. I simply clicked "Revert to Inherited" in the right nav of IIS in the Handler Mappings section and all is working well now.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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