I've implemented a sample app like the one here. It is a really basic app just to get things started. Everything works fine in IIS on my local machine, I've got it running on my IIS Express as well, but now come the tricky part. I do want to host this on AppHarbor, but I get 404 error. I've started a discussion on the support forum of AppHarbor, and they have taken a screen shot of the error when they run it. ScreenShot

It seems like it is something wrong with the routing since the StaticFile handler is used, but I'm just guessing. Does anyone have any suggestions?

link|improve this question

76% accept rate
feedback

1 Answer

up vote 9 down vote accepted

Try and add

<system.webServer>
     <modules runAllManagedModulesForAllRequests="true" />
</system.webServer>

to your web.config

link|improve this answer
It works like a charm! :) – Tomas Jansson Jun 1 '11 at 5:45
feedback

Your Answer

 
or
required, but never shown

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