<?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>Avivo Tech Blog &#187; iis7</title>
	<atom:link href="http://tech.avivo.si/tag/iis7/feed/" rel="self" type="application/rss+xml" />
	<link>http://tech.avivo.si</link>
	<description>Solving problems</description>
	<lastBuildDate>Tue, 24 Jan 2012 14:46:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>IF WRN: Assembly binding logging is turned OFF or It is an error to use a section registered as allowDefinition=&#8217;MachineToApplication&#8217; beyond application level</title>
		<link>http://tech.avivo.si/2009/12/if-wrn-assembly-binding-logging-is-turned-off-or-it-is-an-error-to-use-a-section-registered-as-allowdefinitionmachinetoapplication-beyond-application-level/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=if-wrn-assembly-binding-logging-is-turned-off-or-it-is-an-error-to-use-a-section-registered-as-allowdefinitionmachinetoapplication-beyond-application-level</link>
		<comments>http://tech.avivo.si/2009/12/if-wrn-assembly-binding-logging-is-turned-off-or-it-is-an-error-to-use-a-section-registered-as-allowdefinitionmachinetoapplication-beyond-application-level/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 11:58:39 +0000</pubDate>
		<dc:creator>Avivo</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Assembly binding logging is turned OFF]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[iis7]]></category>
		<category><![CDATA[It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web.config error]]></category>
		<category><![CDATA[windows 2008 server]]></category>

		<guid isPermaLink="false">http://tech.avivo.si/?p=234</guid>
		<description><![CDATA[We had some problems with subdirectories under our root website. We wanted to add different examples under our website root (organized into folders) like this: www.our-website.com/example1 www.our-website.com/example2 &#8230; And we always got these errors. At root of our website www.our-website.com we didn&#8217;t have any web.config and we didn&#8217;t want any. Every subfolder has its own [...]]]></description>
			<content:encoded><![CDATA[<p>We had some problems with subdirectories under our root website.</p>
<p>We wanted to add different examples under our website root (organized into folders) like this:</p>
<ul>
<li>www.our-website.com/example1</li>
<li>www.our-website.com/example2</li>
<li>&#8230;</li>
</ul>
<p>And we always got these errors.</p>
<p>At root of our website www.our-website.com we didn&#8217;t have any web.config and we didn&#8217;t want any. Every subfolder has its own web.config and it didn&#8217;t worked under IIS7</p>
<p>Solution:</p>
<p>Click on each folder under IIS and then right mouse click <strong>Convert To Application</strong> and it worked.</p>
]]></content:encoded>
			<wfw:commentRss>http://tech.avivo.si/2009/12/if-wrn-assembly-binding-logging-is-turned-off-or-it-is-an-error-to-use-a-section-registered-as-allowdefinitionmachinetoapplication-beyond-application-level/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MimeType in IIS7 and configuration with IIS7 Admin Tool</title>
		<link>http://tech.avivo.si/2009/08/mimetype-in-iis7-and-configuration-with-iis7-admin-tool/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mimetype-in-iis7-and-configuration-with-iis7-admin-tool</link>
		<comments>http://tech.avivo.si/2009/08/mimetype-in-iis7-and-configuration-with-iis7-admin-tool/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 10:23:59 +0000</pubDate>
		<dc:creator>Avivo</dc:creator>
				<category><![CDATA[System administration]]></category>
		<category><![CDATA[appcmd.exe]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[iis7]]></category>
		<category><![CDATA[iis7 admin tools]]></category>
		<category><![CDATA[mimetype]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[windows 2008]]></category>

		<guid isPermaLink="false">http://blog.sweetucan.com/?p=154</guid>
		<description><![CDATA[We have experienced problem how to add MimeType that has two extensions, such as .exe.config You can not do this using IIS7 GUI manager. Instead of this use IIS7 console programme: "C:\Windows\System32\inetsrv\appcmd.exe" set config "Default Web Site/sicer08" -section:system.webServer/staticContent /+"[fileExtension='.exe.config',mimeType='application/octet-stream']" One more problem we expirienced on Windows 2008 Server 64-bit is that you can not see [...]]]></description>
			<content:encoded><![CDATA[<p>We have experienced problem how to add MimeType that has two extensions, such as <strong>.exe.config</strong></p>
<p>You can not do this using IIS7 GUI manager.</p>
<p>Instead of this use IIS7 console programme:</p>
<pre name="code" class="c-sharp">
"C:\Windows\System32\inetsrv\appcmd.exe" set config "Default Web Site/sicer08" -section:system.webServer/staticContent /+"[fileExtension='.exe.config',mimeType='application/octet-stream']"
</pre>
<p>One more problem we expirienced on Windows 2008 Server 64-bit is that you can not see configuration files. They should be in <strong>C:\Windows\System32\inetsrv\Config\</strong> but you can not see them using Windows Explorer, 32-bit application on 64-bit system so you need to find and install Microsoft IIS Admin Tool in order to manage these files (you will get one new icon in IIS7 Management Studio when you click on you IIS webserver and its name is Configuration Editor &#8211; you can edit then in Notepad &#8211; oh no&#8230;).</p>
]]></content:encoded>
			<wfw:commentRss>http://tech.avivo.si/2009/08/mimetype-in-iis7-and-configuration-with-iis7-admin-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A listener channel for protocol &#8216;http&#8217; in worker process &#8221; serving application pool &#8216;DefaultAppPool&#8217; reported a listener channel failure.</title>
		<link>http://tech.avivo.si/2009/07/a-listener-channel-for-protocol-http-in-worker-process-serving-application-pool-defaultapppool-reported-a-listener-channel-failure/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=a-listener-channel-for-protocol-http-in-worker-process-serving-application-pool-defaultapppool-reported-a-listener-channel-failure</link>
		<comments>http://tech.avivo.si/2009/07/a-listener-channel-for-protocol-http-in-worker-process-serving-application-pool-defaultapppool-reported-a-listener-channel-failure/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 12:37:18 +0000</pubDate>
		<dc:creator>Avivo</dc:creator>
				<category><![CDATA[System administration]]></category>
		<category><![CDATA[application pool error]]></category>
		<category><![CDATA[iis error]]></category>
		<category><![CDATA[iis7]]></category>
		<category><![CDATA[service unavailable]]></category>
		<category><![CDATA[windows 2008 server]]></category>

		<guid isPermaLink="false">http://blog.sweetucan.com/?p=129</guid>
		<description><![CDATA[PROBLEM: Enabling RPC over HTTP on a 64-bit Internet Information Services 7.0 webserver results in application pool failures. Just run these 4 command and restart IIS and application pools: 1) %windir%\system32\inetsrv\appcmd.exe set config -section:system.webServer/globalModules -[name='PasswordExpiryModule'].preCondition:bitness64 2) %windir%\system32\inetsrv\appcmd.exe add apppool -name:RpcAppPool -enable32BitAppOnWin64:false 3) %windir%\system32\inetsrv\appcmd.exe set app &#8220;Default Web Site/Rpc&#8221; -applicationPool:RpcAppPool 4) %windir%\system32\inetsrv\appcmd.exe set app &#8220;Default Web Site/RpcWithCert&#8221; -applicationPool:RpcAppPool http://support.microsoft.com/kb/970259]]></description>
			<content:encoded><![CDATA[<p>PROBLEM: Enabling RPC over HTTP on a 64-bit Internet Information Services 7.0 webserver results in application pool failures.</p>
<p>Just run these 4 command and restart IIS and application pools:</p>
<p>1) %windir%\system32\inetsrv\appcmd.exe set config -section:system.webServer/globalModules -[name='PasswordExpiryModule'].preCondition:bitness64</p>
<p>2) %windir%\system32\inetsrv\appcmd.exe add apppool -name:RpcAppPool -enable32BitAppOnWin64:false</p>
<p>3) %windir%\system32\inetsrv\appcmd.exe set app &#8220;Default Web Site/Rpc&#8221; -applicationPool:RpcAppPool</p>
<p>4) %windir%\system32\inetsrv\appcmd.exe set app &#8220;Default Web Site/RpcWithCert&#8221; -applicationPool:RpcAppPool</p>
<p><a href="http://support.microsoft.com/kb/970259" target="_blank">http://support.microsoft.com/kb/970259</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tech.avivo.si/2009/07/a-listener-channel-for-protocol-http-in-worker-process-serving-application-pool-defaultapppool-reported-a-listener-channel-failure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

