Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've a MVC 3 web application using WIF (only thing that matters here is that it's a http module and integrated into the processing pipeline), I've added in normal error handling via global.asax.cs's application_error handler. This works well for most of the cases where the basic application is up and running.

however, there is a class of errors where if the web.config is not configured correctly. (i.e. after a fresh install), the http modules, i.e. WIF assemblies throw exceptions.

I'm trying to put a custom error page for that as well to ask the user to look at the configuration, however, any page hosted on the same website, even for static html still goes to the standard asp.net error page. My guess is that its still invoking the modules for static pages. Any one have idea on how to disable the httpmodules for certain areas or what the standard practice is?

This is how i'm configuring the custom error page

<customErrors mode="RemoteOnly" defaultRedirect="~/error.htm">  

it's a simple static html page. page loads fine when the website is configured properly, but does not show when there is a http module level problem.

share|improve this question

1 Answer

You can specify default websites setting in machine.config file. And even protect them from overwrites. The machine.config file is located in x:\\Microsoft.NET\Framework\\config\machine.config So if after deployment web.config file will be broken (or some settings) - proper settings will be taken from machine.config.

share|improve this answer
good suggestion. I'll check it out. – user526498 May 1 '12 at 15:24

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.