Enterprise Library Exception Handling Application Block and Logging Application Block proper use in ASP.NET - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T19:42:15Zhttp://stackoverflow.com/feeds/question/658886http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/658886/enterprise-library-exception-handling-application-block-and-logging-application-b1Enterprise Library Exception Handling Application Block and Logging Application Block proper use in ASP.NETPhantomTypist2009-03-18T15:54:18Z2009-11-17T19:08:37Z
<p>I have a grasp on this application block with ASP.NET, but I feel unsure if I am coding with it properly in ASP.NET.</p>
<p>I've looked all over for proper examples of how to use the Enterprise Library Exception Handling Application Block, but only turn up articles for Windows Forms.</p>
<p>Could somebody please point me in the right direction for usage of the Enterprise Library Exception Handling Application Block with ASP.NET? (e.g. handling exceptions in classes, when to propagate exception to Application_Error in Global.asax, how to process handled and unhandled exceptions in Application_Error).</p>
<p>I would really like to see what other people are doing.</p>
<p>Code incorporating the Enterprise Library Error Handling Application Block with the Logging Application Block would also be helpful.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/658886/enterprise-library-exception-handling-application-block-and-logging-application-b/658920#6589201Answer by Ken Browning for Enterprise Library Exception Handling Application Block and Logging Application Block proper use in ASP.NETKen Browning2009-03-18T16:04:15Z2009-03-18T16:04:15Z<p>Perhaps it would be better to start with your objectives and then determine how to accomplish them.</p>
<p>The way our team does it is to log exceptions in the <code>Application_Error</code> event in global.asax. This captures all unhandled exceptions and logs them to our database. We do not use many of the features of the Exception Handling block because we haven't identified a need for them.</p>
http://stackoverflow.com/questions/658886/enterprise-library-exception-handling-application-block-and-logging-application-b/802776#8027761Answer by Kartik Sehgal for Enterprise Library Exception Handling Application Block and Logging Application Block proper use in ASP.NETKartik Sehgal2009-04-29T15:01:03Z2009-04-29T15:01:03Z<p>You can also try the approach and library provided in the link below</p>
<p><a href="http://sites.google.com/site/spyderhoodcommunity/tech-stuff/aspnetexceptionhandlingandlogginglibrary" rel="nofollow">http://sites.google.com/site/spyderhoodcommunity/tech-stuff/aspnetexceptionhandlingandlogginglibrary</a></p>
<p>Exception handling block is basically for enterprise level applications. It will come with it's overheads in terms of performance as well as learning curve.</p>
<p>If your need is simpler, the above link will provide you the architecture to do exception handling as well as the logging library.</p>
http://stackoverflow.com/questions/658886/enterprise-library-exception-handling-application-block-and-logging-application-b/1531187#15311871Answer by Christian Hayter for Enterprise Library Exception Handling Application Block and Logging Application Block proper use in ASP.NETChristian Hayter2009-10-07T11:55:26Z2009-10-07T11:55:26Z<p>Handling exceptions with the ELEHAB is basically the same in all types of application. You catch the error and call <code>ExceptionPolicy.HandleException</code>. The only difference is exactly where you put your "global" catch block. In WinForms, you might put it in the <code>Main</code> method. In ASP.NET, you might put it in the <code>Application_Error</code> event. In a Windows Service, you might put it in the background thread start method.</p>
http://stackoverflow.com/questions/658886/enterprise-library-exception-handling-application-block-and-logging-application-b/1751064#17510640Answer by jmbledsoe for Enterprise Library Exception Handling Application Block and Logging Application Block proper use in ASP.NETjmbledsoe2009-11-17T19:08:37Z2009-11-17T19:08:37Z<p>I have <a href="http://stackoverflow.com/questions/1751052/using-enterprise-library-exception-handling-application-block-in-asp-net-code-r">my own implementation</a>, but I'm looking for input regarding its correctness.</p>