vote up 5 vote down star
1

I'm struggling to get around the 404 errors from asp.net mvc beta when deploying on IIS 6. I had this working in one of the previews by mapping .mvc in IIS but this no longer works. I've read Omar's post and several others on the web and tried their solutions but no luck so far.

The home page opens without a problem on IIS 6 but others 404 and the site runs well on IIS 7.

Has anybody deployed asp.net mvc beta to IIS 6 with success? If so, what adjustments did you need to make to the code and/or IIS settings to get it to work?

flag

73% accept rate
For S&G's... check your wildcard mapping. Is that little checkbox "Check that File Exists" checked? I hate that little bastard. – Will Oct 27 '08 at 14:52

2 Answers

vote up 11 vote down check

I found a solution to my problem from Steve Sanderson's blog (Thanks Steve):

Option 1: Use a wildcard mapping for aspnet_isapi.dll This tells IIS 6 to process all requests using ASP.NET, so routing is always invoked, and there’s no problem. It’s dead easy to set up: open IIS manager, right-click your app, go to Properties, then Home Directory tab, then click Configuration. Under Wildcard application maps, click Insert (not Add, which is confusingly just above), then enter C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll for “Executable”, and uncheck Verify that file exists.

link|flag
1  
I just did this myself ... works great! – mattruma Nov 15 '08 at 23:39
2  
Perfect! This solved my problem after an hour and a half of banging my head against a wall. – Chris Pebble Dec 2 '08 at 13:17
1  
Great fix. Saved me A LOT of time. Thanks – Chops Mar 11 at 14:31
1  
What a pain that was! In the immortal words of Napoleon Dynamite: "Flippin' Sweet!" – Boydski Apr 7 at 20:19
2  
Wow... Thanks -- solved my problem immediately! – Andrew Flanagan Jul 14 at 17:58
vote up 0 vote down

I am so thankful I have not upgraded yet from CTP 5 :)

link|flag

Your Answer

Get an OpenID
or

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