<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Get notified when your website throws an exception.</title>
	<atom:link href="http://blog.love2trade.com/2007/11/05/get-notified-when-your-website-throws-an-exception/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.love2trade.com/2007/11/05/get-notified-when-your-website-throws-an-exception/</link>
	<description>Love2Trade Plans, Ideas &#38; Vision</description>
	<lastBuildDate>Sun, 22 May 2011 04:10:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Chevrolet newark</title>
		<link>http://blog.love2trade.com/2007/11/05/get-notified-when-your-website-throws-an-exception/#comment-193</link>
		<dc:creator><![CDATA[Chevrolet newark]]></dc:creator>
		<pubDate>Sun, 09 Mar 2008 06:24:34 +0000</pubDate>
		<guid isPermaLink="false">http://love2trade.wordpress.com/2007/11/05/get-notified-when-your-website-throws-an-exception/#comment-193</guid>
		<description><![CDATA[good post]]></description>
		<content:encoded><![CDATA[<p>good post</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ash</title>
		<link>http://blog.love2trade.com/2007/11/05/get-notified-when-your-website-throws-an-exception/#comment-39</link>
		<dc:creator><![CDATA[ash]]></dc:creator>
		<pubDate>Sun, 13 Jan 2008 07:19:48 +0000</pubDate>
		<guid isPermaLink="false">http://love2trade.wordpress.com/2007/11/05/get-notified-when-your-website-throws-an-exception/#comment-39</guid>
		<description><![CDATA[I&#039;m sorry, I seem to have missed some important details. 
To answer your questions.
1. Love2TradeHttpApplication class is simply a class i created that inherits from HttpApplication
&lt;code&gt;  public class Love2TradeHttpApplication : HttpApplication &lt;/code&gt;
I your global.asax you would need to instantiate an object of that class.
&lt;code&gt;
...In global.asax

	void Application_Start(Object sender, EventArgs e)
	{
		Love2TradeHttpApplication cha = new Love2TradeHttpApplication();
		cha.Application_Start(sender, e);
                          //inside  Application_Start you would call all startup code, start maintainance threads, load any necessary data from DB... etc
	}
...
&lt;/code&gt;

2. This is a typo and should actually be client.Send(mail); 
3. If you use SmtpClient client = new SmtpClient(); You are simply reading the server settings from the web.config file.
You can also specify another server by doing
&lt;code&gt;
SmtpClient client = new SmtpClient(&quot;smtpServerName&quot;);
client.Credentials = new NetworkCredential(&quot;username&quot;, &quot;password&quot;);
client.Send(mail);
&lt;/code&gt;

4. Yes...look above

-Regarding using your services, please contact me personally and let me know more about it.]]></description>
		<content:encoded><![CDATA[<p>I&#8217;m sorry, I seem to have missed some important details.<br />
To answer your questions.<br />
1. Love2TradeHttpApplication class is simply a class i created that inherits from HttpApplication<br />
<code>  public class Love2TradeHttpApplication : HttpApplication </code><br />
I your global.asax you would need to instantiate an object of that class.<br />
<code><br />
...In global.asax</p>
<p>	void Application_Start(Object sender, EventArgs e)<br />
	{<br />
		Love2TradeHttpApplication cha = new Love2TradeHttpApplication();<br />
		cha.Application_Start(sender, e);<br />
                          //inside  Application_Start you would call all startup code, start maintainance threads, load any necessary data from DB... etc<br />
	}<br />
...<br />
</code></p>
<p>2. This is a typo and should actually be client.Send(mail);<br />
3. If you use SmtpClient client = new SmtpClient(); You are simply reading the server settings from the web.config file.<br />
You can also specify another server by doing<br />
<code><br />
SmtpClient client = new SmtpClient("smtpServerName");<br />
client.Credentials = new NetworkCredential("username", "password");<br />
client.Send(mail);<br />
</code></p>
<p>4. Yes&#8230;look above</p>
<p>-Regarding using your services, please contact me personally and let me know more about it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Regan</title>
		<link>http://blog.love2trade.com/2007/11/05/get-notified-when-your-website-throws-an-exception/#comment-38</link>
		<dc:creator><![CDATA[Regan]]></dc:creator>
		<pubDate>Sun, 13 Jan 2008 06:58:54 +0000</pubDate>
		<guid isPermaLink="false">http://love2trade.wordpress.com/2007/11/05/get-notified-when-your-website-throws-an-exception/#comment-38</guid>
		<description><![CDATA[There is alot more settings required than just the ones you have provided above.

1. You have not stated how to name the (name)HttpAppllication
2. There is no opening bracket for - DefaultNetworkCredentials;client.Sendmail);
3. Are you supposed to put your smtp creedentials in these brackets or after the semi colon? SmtpClient client = new SmtpClient();// Add credentials if the SMTP server requires them.
4. How do i create -- In Application Start Class.
5. and anything else that may get this working?

Your help will be appreciated. Also we are getting close to open testing stages of our new ad serving product and we were wondering if you would be interested in hosting ads during our eveluation this of course is free. Not only will you have some attractive proffesional ads on your site you will also be able to have your ads on other websites (again free) and you will be able to view impression and click rates until the eveluation period is over and then you will have access to all features.

Regards
Regan.]]></description>
		<content:encoded><![CDATA[<p>There is alot more settings required than just the ones you have provided above.</p>
<p>1. You have not stated how to name the (name)HttpAppllication<br />
2. There is no opening bracket for &#8211; DefaultNetworkCredentials;client.Sendmail);<br />
3. Are you supposed to put your smtp creedentials in these brackets or after the semi colon? SmtpClient client = new SmtpClient();// Add credentials if the SMTP server requires them.<br />
4. How do i create &#8212; In Application Start Class.<br />
5. and anything else that may get this working?</p>
<p>Your help will be appreciated. Also we are getting close to open testing stages of our new ad serving product and we were wondering if you would be interested in hosting ads during our eveluation this of course is free. Not only will you have some attractive proffesional ads on your site you will also be able to have your ads on other websites (again free) and you will be able to view impression and click rates until the eveluation period is over and then you will have access to all features.</p>
<p>Regards<br />
Regan.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

