<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>www.jayntguru.com &#187; iis</title>
	<atom:link href="http://jayntguru.com/wordpress/archives/tag/iis/feed" rel="self" type="application/rss+xml" />
	<link>http://jayntguru.com/wordpress</link>
	<description>jay&#039;s website</description>
	<lastBuildDate>Mon, 30 Aug 2010 20:53:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>.net health monitoring</title>
		<link>http://jayntguru.com/wordpress/archives/273</link>
		<comments>http://jayntguru.com/wordpress/archives/273#comments</comments>
		<pubDate>Tue, 20 Jul 2010 18:32:33 +0000</pubDate>
		<dc:creator>jayntguru</dc:creator>
				<category><![CDATA[computer geek stuff]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[scom]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[application lifetime events]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[exceptions]]></category>

		<guid isPermaLink="false">http://jayntguru.com/wordpress/archives/273</guid>
		<description><![CDATA[This is a little blurb I use almost everywhere for almost everything that will log all sorts of useful info about a .net app in the application log. It will grab unhandled exceptions as well as application lifetime events (app pool or domain restarts, etc.) This is a really good one to use when your [...]]]></description>
			<content:encoded><![CDATA[<p>This is a little blurb I use almost everywhere for almost everything that will log all sorts of useful info about a .net app in the application log. It will grab unhandled exceptions as well as application lifetime events (app pool or domain restarts, etc.) This is a really good one to use when your devs won’t add this to the code themselves! It will work (or has for me) straight up in any .net code. All you do is place this in the web.config.</p>
<blockquote><p>&lt;healthMonitoring enabled=&quot;true&quot;&gt;</p>
<p>&#160;&#160;&#160;&#160;&#160; &lt;eventMappings&gt;</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;clear /&gt;</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;!&#8211; Log ALL error events &#8211;&gt;</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;add name=&quot;All Errors&quot; type=&quot;System.Web.Management.WebBaseErrorEvent&quot; startEventCode=&quot;0&quot; endEventCode=&quot;2147483647&quot; /&gt;</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;!&#8211; Log application startup/shutdown events &#8211;&gt;</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;add name=&quot;Application Lifetime Events&quot; type=&quot;System.Web.Management.WebApplicationLifetimeEvent&quot; startEventCode=&quot;0&quot; endEventCode=&quot;2147483647&quot;/&gt;</p>
<p>&#160;&#160;&#160;&#160;&#160; &lt;/eventMappings&gt;</p>
<p>&#160;&#160;&#160;&#160;&#160; &lt;rules&gt;</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;clear /&gt;</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;add name=&quot;Application Events&quot; eventName=&quot;Application Lifetime Events&quot; provider=&quot;EventLogProvider&quot; profile=&quot;Default&quot; minInstances=&quot;1&quot; maxLimit=&quot;Infinite&quot; minInterval=&quot;00:01:00&quot; custom=&quot;&quot; /&gt;</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;add name=&quot;All Errors Default&quot; eventName=&quot;All Errors&quot; provider=&quot;EventLogProvider&quot; profile=&quot;Default&quot; minInstances=&quot;1&quot; maxLimit=&quot;Infinite&quot; minInterval=&quot;00:00:00&quot; /&gt;</p>
<p>&#160;&#160;&#160;&#160;&#160; &lt;/rules&gt;</p>
<p>&#160;&#160;&#160; &lt;/healthMonitoring&gt;</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://jayntguru.com/wordpress/archives/273/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>this is just dumb</title>
		<link>http://jayntguru.com/wordpress/archives/115</link>
		<comments>http://jayntguru.com/wordpress/archives/115#comments</comments>
		<pubDate>Tue, 27 Oct 2009 21:26:20 +0000</pubDate>
		<dc:creator>jayntguru</dc:creator>
				<category><![CDATA[annoyances]]></category>
		<category><![CDATA[computer geek stuff]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[2008server]]></category>
		<category><![CDATA[microsoft]]></category>

		<guid isPermaLink="false">http://jayntguru.com/wordpress/archives/115</guid>
		<description><![CDATA[I had to install the SMTP service on a 2008 server today for the first time, and Microsoft does not make it easy.

The SMTP install is under features and not under roles.
When you do install SMTP, where do you manage it, you wonder. Thanks to google and this link, I now know that you have [...]]]></description>
			<content:encoded><![CDATA[<p>I had to install the SMTP service on a 2008 server today for the first time, and Microsoft does not make it easy.</p>
<ol>
<li>The SMTP install is under features and not under roles.</li>
<li>When you do install SMTP, where do you manage it, you wonder. Thanks to google and <a href="http://www.evanclosson.com/devlog/windowsserver2008websmtp" target="_blank">this link</a>, I now know that you have to use the IIS6 manager. What??!!</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://jayntguru.com/wordpress/archives/115/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
