<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>sigh.net - a handler of unhandled asp.net exceptions</title><link>http://www.codeplex.com/sigh/Project/ProjectRss.aspx</link><description>Sigh.net is a provider based unhandled exception handler for ASP.NET 2.0 and higher applications</description><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/sigh/Wiki/View.aspx?title=Home&amp;version=10</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Never wonder about unhandled ASP.NET exceptions again
&lt;/h2&gt;Sigh.net is a provider based unhandled exception handler for ASP.NET 2.0 and higher applications.  Used by developers or system administrators, sigh.net monitors ASP.NET applications for unhandled exceptions and sends detailed information to one or more configured providers.  There is no code to change and no code to add to your application; you don't even have to rebuild you application.  Just drop the sigh.net assembly into your web application's bin directory and configure it with the web.config file.  Any unhandled exceptions thrown by your application will be trapped by sigh.net and forwarded to the configured providers.&lt;br /&gt;&lt;h3&gt;
It's provider based
&lt;/h3&gt;There are two providers available for sigh.net, though the provider model offers a great deal of extensibility.&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;SMTP Email&lt;/li&gt;&lt;li&gt;Sql Server Table (under development)&lt;/li&gt;
&lt;/ul&gt;&lt;h3&gt;
Sample web.config Setting:
&lt;/h3&gt;The example below illustrates how simple it is to configure sigh.net to monitor your unhandled ASP.NET exceptions.  This is all done without adding or modifying a single line of code in your application.&lt;br /&gt;&lt;pre&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;
&amp;lt;configuration&amp;gt;
	&amp;lt;configSections&amp;gt;
		&amp;lt;sectionGroup name=&amp;quot;unhandledHttpException&amp;quot;&amp;gt;
			&amp;lt;section name=&amp;quot;httpExceptionProviders&amp;quot; type=&amp;quot;Sigh.HttpExceptionConfiguration, Sigh&amp;quot; allowDefinition=&amp;quot;MachineToApplication&amp;quot; restartOnExternalChanges=&amp;quot;true&amp;quot; /&amp;gt;
			&amp;lt;section name=&amp;quot;emailProviderConfiguration&amp;quot; type=&amp;quot;Sigh.Providers.EmailProviderConfiguration, Sigh&amp;quot; allowDefinition=&amp;quot;MachineToApplication&amp;quot; restartOnExternalChanges=&amp;quot;true&amp;quot; /&amp;gt;
			&amp;lt;section name=&amp;quot;sqlDatabaseProviderConfiguration&amp;quot; type=&amp;quot;Sigh.Providers.SqlDatabaseProviderConfiguration, Sigh&amp;quot; allowDefinition=&amp;quot;MachineToApplication&amp;quot; restartOnExternalChanges=&amp;quot;true&amp;quot; /&amp;gt;
		&amp;lt;/sectionGroup&amp;gt;
	&amp;lt;/configSections&amp;gt;
	&amp;lt;connectionStrings&amp;gt;
		&amp;lt;add name=&amp;quot;Default&amp;quot; providerName=&amp;quot;System.Data.SqlClient&amp;quot; connectionString=&amp;quot;YOUR CONNECTION STRING&amp;quot;/&amp;gt;
	&amp;lt;/connectionStrings&amp;gt;
	&amp;lt;unhandledHttpException&amp;gt;
		&amp;lt;httpExceptionProviders DefaultProvider=&amp;quot;EmailProvider&amp;quot; EnableMulticast=&amp;quot;true&amp;quot; Enabled=&amp;quot;true&amp;quot;&amp;gt;
			&amp;lt;providers&amp;gt;
				&amp;lt;clear /&amp;gt;
				&amp;lt;add name=&amp;quot;EmailProvider&amp;quot; type=&amp;quot;Sigh.Providers.EmailProvider, Sigh&amp;quot; /&amp;gt;
				&amp;lt;add name=&amp;quot;SqlDatabaseProvider&amp;quot; type=&amp;quot;Sigh.Providers.SqlDatabaseProvider, Sigh&amp;quot; /&amp;gt;
			&amp;lt;/providers&amp;gt;
		&amp;lt;/httpExceptionProviders&amp;gt;
		&amp;lt;emailProviderConfiguration FromAddress=&amp;quot;ohhai@someaddress.com&amp;quot; ToAddresses=&amp;quot;ohhai@someaddress.com&amp;quot; Subject=&amp;quot;The subject of your email goes here!&amp;quot; EnableSsl=&amp;quot;false&amp;quot; Enabled=&amp;quot;true&amp;quot; /&amp;gt;
		&amp;lt;sqlDatabaseProviderConfiguration ConnectionStringName=&amp;quot;Default&amp;quot; Enabled=&amp;quot;true&amp;quot; /&amp;gt;
	&amp;lt;/unhandledHttpException&amp;gt;
	&amp;lt;system.net&amp;gt;
		&amp;lt;mailSettings&amp;gt;
			&amp;lt;smtp deliveryMethod=&amp;quot;Network&amp;quot;&amp;gt;
				&amp;lt;network host=&amp;quot;YOUR SMTP SERVER&amp;quot; port=&amp;quot;80&amp;quot; userName=&amp;quot;ohhai@someaddress.com&amp;quot; password=&amp;quot;SMTP PASSWORD HERE&amp;quot; /&amp;gt;
			&amp;lt;/smtp&amp;gt;
		&amp;lt;/mailSettings&amp;gt;
	&amp;lt;/system.net&amp;gt;
	&amp;lt;system.web&amp;gt;
		&amp;lt;httpModules&amp;gt;
			&amp;lt;add name=&amp;quot;HttpExceptionModule&amp;quot; type=&amp;quot;Sigh.HttpExceptionModule, Sigh&amp;quot;/&amp;gt;
		&amp;lt;/httpModules&amp;gt;
	&amp;lt;/system.web&amp;gt;
&amp;lt;/configuration&amp;gt;
&lt;/pre&gt;
&lt;/div&gt;</description><author>Abusement</author><pubDate>Mon, 17 Mar 2008 02:37:51 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080317023751A</guid></item><item><title>Source code checked in</title><link>http://www.codeplex.com/sigh/SourceControl/ListDownloadableCommits.aspx</link><description>- commented code&amp;#13;&amp;#10;- updated web.config with configuration information</description><author>Abusement</author><pubDate>Mon, 17 Mar 2008 02:09:48 GMT</pubDate><guid isPermaLink="false">Source code checked in 20080317020948A</guid></item><item><title>Source code checked in</title><link>http://www.codeplex.com/sigh/SourceControl/ListDownloadableCommits.aspx</link><description>- Initial source code checkin</description><author>Abusement</author><pubDate>Sun, 16 Mar 2008 22:52:13 GMT</pubDate><guid isPermaLink="false">Source code checked in 20080316105213P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/sigh/Wiki/View.aspx?title=Home&amp;version=9</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Never wonder about unhandled ASP.NET exceptions again
&lt;/h2&gt;Sigh.net is a provider based unhandled exception handler for ASP.NET 2.0 and higher applications.  Used by developers or system administrators, sigh.net monitors ASP.NET applications for unhandled exceptions and sends detailed information to one or more configured provider.  There is no code to change or add to your application; you don't even have to rebuild you application.  Just drop the sigh.net assembly into your web application's bin directory and configure it within the web.config file and any unhandled exceptions thrown by your application will be trapped by sigh.net and forwarded to the configured providers.&lt;br /&gt;&lt;h3&gt;
It's provider based
&lt;/h3&gt;Currently there are only two providers available for sigh.net.  If you want another provider or five, let me know and I'll add them to the project.  Or, if you're really fancy and make your own provider let me know and I'll add it to the project.&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;SMTP Email&lt;/li&gt;&lt;li&gt;Sql Server Table (under development)&lt;/li&gt;
&lt;/ul&gt;&lt;h3&gt;
Sample web.config Setting:
&lt;/h3&gt;The example below illustrates how simple it is to configure sigh.net to monitor your unhandled ASP.NET exceptions.  This is all done without adding or modifying a single line of code in your application.&lt;br /&gt;&lt;pre&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;
&amp;lt;configuration&amp;gt;
	&amp;lt;configSections&amp;gt;
		&amp;lt;sectionGroup name=&amp;quot;unhandledHttpException&amp;quot;&amp;gt;
			&amp;lt;section name=&amp;quot;httpExceptionProviders&amp;quot; type=&amp;quot;Sigh.HttpExceptionConfiguration, Sigh&amp;quot; allowDefinition=&amp;quot;MachineToApplication&amp;quot; restartOnExternalChanges=&amp;quot;true&amp;quot; /&amp;gt;
			&amp;lt;section name=&amp;quot;emailProviderConfiguration&amp;quot; type=&amp;quot;Sigh.Providers.EmailProviderConfiguration, Sigh&amp;quot; allowDefinition=&amp;quot;MachineToApplication&amp;quot; restartOnExternalChanges=&amp;quot;true&amp;quot; /&amp;gt;
			&amp;lt;section name=&amp;quot;sqlDatabaseProviderConfiguration&amp;quot; type=&amp;quot;Sigh.Providers.SqlDatabaseProviderConfiguration, Sigh&amp;quot; allowDefinition=&amp;quot;MachineToApplication&amp;quot; restartOnExternalChanges=&amp;quot;true&amp;quot; /&amp;gt;
		&amp;lt;/sectionGroup&amp;gt;
	&amp;lt;/configSections&amp;gt;
	&amp;lt;connectionStrings&amp;gt;
		&amp;lt;add name=&amp;quot;Default&amp;quot; providerName=&amp;quot;System.Data.SqlClient&amp;quot; connectionString=&amp;quot;YOUR CONNECTION STRING&amp;quot;/&amp;gt;
	&amp;lt;/connectionStrings&amp;gt;
	&amp;lt;unhandledHttpException&amp;gt;
		&amp;lt;httpExceptionProviders DefaultProvider=&amp;quot;EmailProvider&amp;quot; EnableMulticast=&amp;quot;true&amp;quot; Enabled=&amp;quot;true&amp;quot;&amp;gt;
			&amp;lt;providers&amp;gt;
				&amp;lt;clear /&amp;gt;
				&amp;lt;add name=&amp;quot;EmailProvider&amp;quot; type=&amp;quot;Sigh.Providers.EmailProvider, Sigh&amp;quot; /&amp;gt;
				&amp;lt;add name=&amp;quot;SqlDatabaseProvider&amp;quot; type=&amp;quot;Sigh.Providers.SqlDatabaseProvider, Sigh&amp;quot; /&amp;gt;
			&amp;lt;/providers&amp;gt;
		&amp;lt;/httpExceptionProviders&amp;gt;
		&amp;lt;emailProviderConfiguration FromAddress=&amp;quot;ohhai@someaddress.com&amp;quot; ToAddresses=&amp;quot;ohhai@someaddress.com&amp;quot; Subject=&amp;quot;The subject of your email goes here!&amp;quot; EnableSsl=&amp;quot;false&amp;quot; Enabled=&amp;quot;true&amp;quot; /&amp;gt;
		&amp;lt;sqlDatabaseProviderConfiguration ConnectionStringName=&amp;quot;Default&amp;quot; Enabled=&amp;quot;true&amp;quot; /&amp;gt;
	&amp;lt;/unhandledHttpException&amp;gt;
	&amp;lt;system.net&amp;gt;
		&amp;lt;mailSettings&amp;gt;
			&amp;lt;smtp deliveryMethod=&amp;quot;Network&amp;quot;&amp;gt;
				&amp;lt;network host=&amp;quot;YOUR SMTP SERVER&amp;quot; port=&amp;quot;80&amp;quot; userName=&amp;quot;ohhai@someaddress.com&amp;quot; password=&amp;quot;SMTP PASSWORD HERE&amp;quot; /&amp;gt;
			&amp;lt;/smtp&amp;gt;
		&amp;lt;/mailSettings&amp;gt;
	&amp;lt;/system.net&amp;gt;
	&amp;lt;system.web&amp;gt;
		&amp;lt;httpModules&amp;gt;
			&amp;lt;add name=&amp;quot;HttpExceptionModule&amp;quot; type=&amp;quot;Sigh.HttpExceptionModule, Sigh&amp;quot;/&amp;gt;
		&amp;lt;/httpModules&amp;gt;
	&amp;lt;/system.web&amp;gt;
&amp;lt;/configuration&amp;gt;
&lt;/pre&gt;
&lt;/div&gt;</description><author>Abusement</author><pubDate>Sun, 16 Mar 2008 22:20:31 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080316102031P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/sigh/Wiki/View.aspx?title=Home&amp;version=8</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Never wonder about unhandled ASP.NET exceptions again
&lt;/h2&gt;Sigh.net is a provider based unhandled exception handler for ASP.NET 2.0 and higher applications.  Used by developers or system administrators, sigh.net monitors ASP.NET applications for unhandled exceptions and sends detailed information to one or more configured provider.  There is no code to change or add to your application; you don't even have to rebuild you application.  Just drop the sigh.net assembly into your web application's bin directory and configure it within the web.config file and any unhandled exceptions thrown by your application will be trapped by sigh.net and forwarded to the configured providers.&lt;br /&gt;&lt;h3&gt;
It's provider based
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;SMTP Email&lt;/li&gt;&lt;li&gt;Sql Server Table&lt;/li&gt;
&lt;/ul&gt;&lt;h3&gt;
Sample web.config Setting:
&lt;/h3&gt;&lt;pre&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;
&amp;lt;configuration&amp;gt;
	&amp;lt;configSections&amp;gt;
		&amp;lt;sectionGroup name=&amp;quot;unhandledHttpException&amp;quot;&amp;gt;
			&amp;lt;section name=&amp;quot;httpExceptionProviders&amp;quot; type=&amp;quot;Sigh.HttpExceptionConfiguration, Sigh&amp;quot; allowDefinition=&amp;quot;MachineToApplication&amp;quot; restartOnExternalChanges=&amp;quot;true&amp;quot; /&amp;gt;
			&amp;lt;section name=&amp;quot;emailProviderConfiguration&amp;quot; type=&amp;quot;Sigh.Providers.EmailProviderConfiguration, Sigh&amp;quot; allowDefinition=&amp;quot;MachineToApplication&amp;quot; restartOnExternalChanges=&amp;quot;true&amp;quot; /&amp;gt;
			&amp;lt;section name=&amp;quot;sqlDatabaseProviderConfiguration&amp;quot; type=&amp;quot;Sigh.Providers.SqlDatabaseProviderConfiguration, Sigh&amp;quot; allowDefinition=&amp;quot;MachineToApplication&amp;quot; restartOnExternalChanges=&amp;quot;true&amp;quot; /&amp;gt;
		&amp;lt;/sectionGroup&amp;gt;
	&amp;lt;/configSections&amp;gt;
	&amp;lt;connectionStrings&amp;gt;
		&amp;lt;add name=&amp;quot;Default&amp;quot; providerName=&amp;quot;System.Data.SqlClient&amp;quot; connectionString=&amp;quot;YOUR CONNECTION STRING&amp;quot;/&amp;gt;
	&amp;lt;/connectionStrings&amp;gt;
	&amp;lt;unhandledHttpException&amp;gt;
		&amp;lt;httpExceptionProviders DefaultProvider=&amp;quot;EmailProvider&amp;quot; EnableMulticast=&amp;quot;true&amp;quot; Enabled=&amp;quot;true&amp;quot;&amp;gt;
			&amp;lt;providers&amp;gt;
				&amp;lt;clear /&amp;gt;
				&amp;lt;add name=&amp;quot;EmailProvider&amp;quot; type=&amp;quot;Sigh.Providers.EmailProvider, Sigh&amp;quot; /&amp;gt;
				&amp;lt;add name=&amp;quot;SqlDatabaseProvider&amp;quot; type=&amp;quot;Sigh.Providers.SqlDatabaseProvider, Sigh&amp;quot; /&amp;gt;
			&amp;lt;/providers&amp;gt;
		&amp;lt;/httpExceptionProviders&amp;gt;
		&amp;lt;emailProviderConfiguration FromAddress=&amp;quot;ohhai@someaddress.com&amp;quot; ToAddresses=&amp;quot;ohhai@someaddress.com&amp;quot; Subject=&amp;quot;The subject of your email goes here!&amp;quot; EnableSsl=&amp;quot;false&amp;quot; Enabled=&amp;quot;true&amp;quot; /&amp;gt;
		&amp;lt;sqlDatabaseProviderConfiguration ConnectionStringName=&amp;quot;Default&amp;quot; Enabled=&amp;quot;true&amp;quot; /&amp;gt;
	&amp;lt;/unhandledHttpException&amp;gt;
	&amp;lt;system.net&amp;gt;
		&amp;lt;mailSettings&amp;gt;
			&amp;lt;smtp deliveryMethod=&amp;quot;Network&amp;quot;&amp;gt;
				&amp;lt;network host=&amp;quot;YOUR SMTP SERVER&amp;quot; port=&amp;quot;80&amp;quot; userName=&amp;quot;ohhai@someaddress.com&amp;quot; password=&amp;quot;SMTP PASSWORD HERE&amp;quot; /&amp;gt;
			&amp;lt;/smtp&amp;gt;
		&amp;lt;/mailSettings&amp;gt;
	&amp;lt;/system.net&amp;gt;
	&amp;lt;system.web&amp;gt;
		&amp;lt;httpModules&amp;gt;
			&amp;lt;add name=&amp;quot;HttpExceptionModule&amp;quot; type=&amp;quot;Sigh.HttpExceptionModule, Sigh&amp;quot;/&amp;gt;
		&amp;lt;/httpModules&amp;gt;
	&amp;lt;/system.web&amp;gt;
&amp;lt;/configuration&amp;gt;
&lt;/pre&gt;
&lt;/div&gt;</description><author>Abusement</author><pubDate>Sun, 16 Mar 2008 22:17:00 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080316101700P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/sigh/Wiki/View.aspx?title=Home&amp;version=7</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Never wonder about unhandled ASP.NET exceptions again
&lt;/h2&gt;Sigh.net is a provider based unhandled exception handler for ASP.NET 2.0 and higher applications.  Used by developers or system administrators, sigh.net monitors ASP.NET applications for unhandled exceptions and sends detailed information to one or more configured provider.  There is no code to change or add to your application; you don't even have to rebuild you application.  Just drop the sigh.net assembly into your web application's bin directory and configure it within the web.config file and any unhandled exceptions thrown by your application will be trapped by sigh.net and forwarded to the configured providers.&lt;br /&gt;&lt;h3&gt;
It's provider based
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;SMTP Email&lt;/li&gt;&lt;li&gt;Sql Server Table&lt;/li&gt;
&lt;/ul&gt;&lt;h3&gt;
Sample web.config Setting:
&lt;/h3&gt;&lt;pre&gt;
&amp;lt;xml&amp;gt;&amp;lt;/xml&amp;gt;
&lt;/pre&gt;
&lt;/div&gt;</description><author>Abusement</author><pubDate>Sun, 16 Mar 2008 22:06:39 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080316100639P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/sigh/Wiki/View.aspx?title=Home&amp;version=6</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Never wonder about unhandled ASP.NET exceptions again
&lt;/h2&gt;Sigh.net is a provider based unhandled exception handler for ASP.NET 2.0 and higher applications.  Used by developers or system administrators, sigh.net monitors ASP.NET applications for unhandled exceptions and sends detailed information to one or more configured provider.  There is no code to change or add to your application; you don't even have to rebuild you application.  Just drop the sigh.net assembly into your web application's bin directory and configure it within the web.config file and any unhandled exceptions thrown by your application will be trapped by sigh.net and forwarded to the configured providers.&lt;br /&gt;&lt;h3&gt;
Sample web.config Setting:
&lt;/h3&gt;&lt;pre&gt;
&amp;lt;xml&amp;gt;&amp;lt;/xml&amp;gt;
&lt;/pre&gt;&lt;h3&gt;
It's provider based
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;SMTP Email&lt;/li&gt;&lt;li&gt;Sql Server Table&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>Abusement</author><pubDate>Sun, 16 Mar 2008 22:05:47 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080316100547P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/sigh/Wiki/View.aspx?title=Home&amp;version=5</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Never wonder about unhandled ASP.NET exceptions again
&lt;/h2&gt;Sigh.net is a provider based unhandled exception handler for ASP.NET 2.0 and higher applications.  Used by developers or system administrators, sigh.net monitors ASP.NET applications for unhandled exceptions and sends detailed information to one or more configured provider.  There is no code to change or add to your application; you don't even have to rebuild you application.  Just drop the sigh.net assembly into your web application's bin directory and configure it within the web.config file and any unhandled exceptions thrown by your application will be trapped by sigh.net and forwarded to the configured providers.&lt;br /&gt;&lt;h3&gt;
Sample web.config Setting:
&lt;/h3&gt;&lt;pre&gt;
&amp;lt;xml&amp;gt;&amp;lt;/xml&amp;gt;
&lt;/pre&gt; &lt;br /&gt;&lt;h3&gt;
It's provider based
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;SMTP Email&lt;/li&gt;&lt;li&gt;Sql Server Table&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>Abusement</author><pubDate>Sun, 16 Mar 2008 22:05:28 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080316100528P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/sigh/Wiki/View.aspx?title=Home&amp;version=4</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Never wonder about unhandled ASP.NET exceptions again
&lt;/h2&gt;Sigh.net is a provider based unhandled exception handler for ASP.NET 2.0 and higher applications.  Used by developers or system administrators, sigh.net monitors ASP.NET applications for unhandled exceptions and sends detailed information to one or more configured provider.  There is no code to change or add to your application; you don't even have to rebuild you application.  Just drop the sigh.net assembly into your web application's bin directory and configure it within the web.config file and any unhandled exceptions thrown by your application will be trapped by sigh.net and forwarded to the configured providers.&lt;br /&gt;&lt;h3&gt;
Sample web.config Setting:
&lt;/h3&gt; &lt;br /&gt; &lt;br /&gt;&lt;h3&gt;
It's provider based
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;SMTP Email&lt;/li&gt;&lt;li&gt;Sql Server Table&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>Abusement</author><pubDate>Sun, 16 Mar 2008 22:03:52 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080316100352P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/sigh/Wiki/View.aspx?title=Home&amp;version=3</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Never wonder about unhandled ASP.NET exceptions again
&lt;/h2&gt;Sigh.net is a provider based unhandled exception handler for ASP.NET 2.0 and higher applications.  Used by developers or system administrators, sigh.net monitors ASP.NET applications for unhandled exceptions and sends detailed information to one or more configured provider.  There is no code to change or add to your application; you don't even have to rebuild you application.  Just drop the sigh.net assembly into your web application's bin directory and configure it within the web.config file and any unhandled exceptions thrown by your application will be trapped by sigh.net and forwarded to the configured providers.&lt;br /&gt; &lt;br /&gt;&lt;h3&gt;
Sample web.config Setting:
&lt;/h3&gt; &lt;br /&gt;&lt;h3&gt;
It's provider based
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;SMTP Email&lt;/li&gt;&lt;li&gt;Sql Server Table&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>Abusement</author><pubDate>Sun, 16 Mar 2008 22:03:18 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080316100318P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/sigh/Wiki/View.aspx?title=Home&amp;version=2</link><description>&lt;div class="wikidoc"&gt;
Sigh.net is a provider based unhandled exception handler for ASP.NET 2.0 and higher applications.  Used by developers or system administrators, sigh.net monitors ASP.NET applications for unhandled exceptions and sends detailed information to one or more configured provider.  There is no code to change or add to your application; you don't even have to rebuild you application.  Just drop the sigh.net assembly into your web application's bin directory and configure it within the web.config file and any unhandled exceptions thrown by your application will be trapped by sigh.net and forwarded to the configured providers.&lt;br /&gt; &lt;br /&gt;Sample web.config Setting:&lt;br /&gt;
&lt;/div&gt;</description><author>Abusement</author><pubDate>Sun, 16 Mar 2008 22:00:20 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080316100020P</guid></item></channel></rss>