<?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>MIKE &#187; IIS</title>
	<atom:link href="http://helios.ca/category/server/iis/feed/" rel="self" type="application/rss+xml" />
	<link>http://helios.ca</link>
	<description>Just another developer blog</description>
	<lastBuildDate>Tue, 12 Jul 2011 21:35:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Did You Know: &#8220;App_Offline.htm&#8221; Takes IIS Website Offline</title>
		<link>http://helios.ca/2009/07/01/did-you-know-app_offline-htm-takes-iis-website-offline/</link>
		<comments>http://helios.ca/2009/07/01/did-you-know-app_offline-htm-takes-iis-website-offline/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 17:36:10 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[IIS]]></category>

		<guid isPermaLink="false">http://helios.ca/?p=151</guid>
		<description><![CDATA[Just drop an App_Offline.htm in the root of your website all requests will automatically be redirected to this file! This is neat! Found it on ScottGu&#8217;s and Erik Porter&#8217;s blogs]]></description>
			<content:encoded><![CDATA[<p>Just drop an App_Offline.htm in the root of your website all requests will automatically be redirected to this file! This is neat!</p>
<p>Found it on <a href="http://weblogs.asp.net/scottgu/archive/2005/10/06/426755.aspx">ScottGu&#8217;s</a> and <a href="http://weblogs.asp.net/eporter/archive/2005/10/05/426708.aspx">Erik Porter&#8217;s</a> blogs</p>
]]></content:encoded>
			<wfw:commentRss>http://helios.ca/2009/07/01/did-you-know-app_offline-htm-takes-iis-website-offline/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Deploying ASP.NET MVC Application under IIS6</title>
		<link>http://helios.ca/2009/06/23/deploying-asp-net-mvc-application-under-iis6/</link>
		<comments>http://helios.ca/2009/06/23/deploying-asp-net-mvc-application-under-iis6/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 11:43:30 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://helios.ca/?p=138</guid>
		<description><![CDATA[When deploying an ASP.NET MVC application under Windows Server 2003 and IIS6 (and Windows Server 2008 Classic Mode), you&#8217;ll get 404 page not found error on every page, except the index of the site. This is because IIS6 doesn&#8217;t not support routing. There are many solutions to fix this, I&#8217;ll just explain my favorite, which [...]]]></description>
			<content:encoded><![CDATA[<p>When deploying an ASP.NET MVC application under Windows Server 2003 and IIS6 (and Windows Server 2008 Classic Mode), you&#8217;ll get 404 page not found error on every page, except the index of the site. This is because IIS6 doesn&#8217;t not support routing.</p>
<p>There are many solutions to fix this, I&#8217;ll just explain my favorite, which is extension-less url.</p>
<p>So lets show IIS6 how to handle extension-less URL. For this, we&#8217;ll use the Wildcard Mapping feature.</p>
<ul>
<li>Open Internet Information Services (IIS) Manager. (run inetmgr)</li>
<li><strong>Right Click » Pro</strong><strong>perties</strong> on your website.<br />
<img class="alignnone size-full wp-image-140" title="1" src="http://helios.ca/wp-content/uploads/2009/06/1.png" alt="1" width="485" height="341" /></li>
<li>Open the <strong>Home Directory</strong> tab.</li>
<li>Click on the <strong>Configuration </strong>button.</li>
<li>Open the <strong>Mappings</strong> tab of the Application Configuration window.<img class="alignnone size-full wp-image-142" title="2" src="http://helios.ca/wp-content/uploads/2009/06/21.png" alt="2" width="292" height="297" /></li>
<li>In the <strong>Wildcard application maps</strong> section, click on the <strong>Insert </strong>button.</li>
<li>Browse to %windir%\Microsoft.NET\Framework\v2.0.50727\<strong>aspnet_isapi.dll.</strong></li>
<li><strong>uncheck </strong>&#8220;Verify that file exists&#8221;.<br />
<img class="alignnone size-full wp-image-143" title="3" src="http://helios.ca/wp-content/uploads/2009/06/3.png" alt="3" width="428" height="127" /></li>
<li>That&#8217;s it! Now try your ASP.NET MVC Application it should work nicely!</li>
</ul>
<p><a href="http://haacked.com">Phil Haack</a> has a very good article about this matter and also explains other solution. You should definitly<a href="http://haacked.com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx"> read it</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://helios.ca/2009/06/23/deploying-asp-net-mvc-application-under-iis6/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Registering .NET Framework</title>
		<link>http://helios.ca/2008/11/28/registering-net-framework/</link>
		<comments>http://helios.ca/2008/11/28/registering-net-framework/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 13:04:58 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[IIS]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://helios.ca/?p=49</guid>
		<description><![CDATA[Sometimes IIS gives you an &#34;Application Not Available&#34; error. A lot of things can cause that, one of them is that ASP.NET is not registered properly with IIS. Follow these steps to register your .NET installation with IIS: Open the Command Prompt Go To: C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322 (Or whatever version you need to register) aspnet_regiis &#8211;u The [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes IIS gives you an &quot;Application Not Available&quot; error. A lot of things can cause that, one of them is that ASP.NET is not registered properly with IIS. Follow these steps to register your .NET installation with IIS:</p>
<ol>
<li>Open the Command Prompt</li>
<li>Go To: C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322 (Or whatever version you need to register)</li>
<li>aspnet_regiis &ndash;u
<ul>
<li>The above commend uninstalls this version of ASP.NET.&nbsp; Existing scriptmaps to this version are remapped to highest remaining version of ASP.NET installed on the machine.</li>
</ul>
</li>
<li>aspnet_regiis &ndash;i
<ul>
<li>The above command installs this version of ASP.NET and updates scriptmaps at the Microsoft IIS metabase root and all scriptmaps below the root.&nbsp; Existing scriptmaps of lower version are upgraded to this version.</li>
</ul>
</li>
<li>aspnet_regiis &ndash;c
<ul>
<li>The above command installs the client side scripts for this version to the aspnet_client subdirectory of each Microsoft IIS site directory.</li>
</ul>
</li>
</ol>
<p>The error should go away now.</p>
]]></content:encoded>
			<wfw:commentRss>http://helios.ca/2008/11/28/registering-net-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

