vote up 2 vote down star
2

Hi guys,

My ASP.NET MVC application is within a folder called Stuff within IIS 6.0 webroot folder. So I access my pages as http://localhost/Stuff/Posts. I had EMLAH working while I was using the in-built webserver of Visual Studio. Now when I access http://localhost/Stuff/elmah.axd, I get resource not found error. Can anyone point my mistake here! Here is config file entry,

<add verb="POST,GET,HEAD" path="elmah.axd" type="Elmah.ErrorLogPageFactory, Elmah"/> //Handler
  <add name="ErrorMail" type="Elmah.ErrorMailModule, Elmah"/>
  <add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah"/>
  <add name="ErrorFilter" type="Elmah.ErrorFilterModule, Elmah"/> //Module
flag

53% accept rate
"the new system.webserver section in the web.config" is only for IIS7.0 but in your question you are asking about IIS6.0. What IIS version exactly you are using? – eu-ge-ne Jul 14 at 11:33

3 Answers

vote up 1 vote down

Working with IIS7 I found I needed both sections of the web.config populated (system.web AND system.webServer) - see http://stackoverflow.com/questions/933554/elmah-not-working-with-asp-net-site/1175023#1175023.

Perhaps this is related.

link|flag
vote up 0 vote down

Can you post the rest of your web.config?

Or, if you're comfortable enough, can you just ensure that the httpHandlers and httpModules (NOT handlers and modules) sections are filled in properly in the web.config?

link|flag
Thanks guys, Actually, I had to add the entries in the new system.webserver section in the web.config file too. – theraneman Jul 14 at 10:34
vote up 0 vote down

Have you added an ignore *.axd routes in global.asax?

link|flag

Your Answer

Get an OpenID
or

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