<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>HttpHandlers and HttpModules</title><link>http://forums.asp.net/27.aspx</link><description>Extending the ASP.NET Framework through HttpModules and HttpHandlers.</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: Wildcard application maps in IIS7 from Web.config?</title><link>http://forums.asp.net/thread/3419009.aspx</link><pubDate>Tue, 22 Sep 2009 14:45:18 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3419009</guid><dc:creator>Peter Smith</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3419009.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=27&amp;PostID=3419009</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;Your solution seems to be the one to go for. However after doing this I&amp;#39;m getting the error:&lt;br /&gt;Could not load type ’sampletype’.&lt;br /&gt;What are the correct type and resourceType values to use for a basic mapping of * to the UrlRewriter module?&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;BLOCKQUOTE&gt;&lt;div&gt;&lt;img src="/Themes/fan/images/icon-quote.gif"&gt; &lt;strong&gt;Zhao Ji Ma - MSFT:&lt;/strong&gt;&lt;/div&gt;&lt;div&gt; please take care of the precedence of the handlers in the&amp;nbsp;list in IIS7 Manager.&lt;/div&gt;&lt;/BLOCKQUOTE&gt;&lt;/p&gt;&lt;p&gt;What is the correct order?&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: Wildcard application maps in IIS7 from Web.config?</title><link>http://forums.asp.net/thread/2271137.aspx</link><pubDate>Wed, 02 Apr 2008 09:34:55 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2271137</guid><dc:creator>Zhao Ji Ma - MSFT</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2271137.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=27&amp;PostID=2271137</wfw:commentRss><description>&lt;p&gt;Hi blove57,&lt;/p&gt;
&lt;p&gt;Yes you can. By default, handlers are not allowed to be overridden in the web.config file. They are locked in the IIS 7 configuration,&amp;nbsp;you need to unlock the section to allow overriding. Here is an example using appcmd.exe to unlock this section. &amp;nbsp;The Command Prompt&amp;nbsp;was running as Administrator.&lt;/p&gt;
&lt;p&gt;&lt;font color="#0000ff"&gt;&lt;strong&gt;&lt;em&gt;&lt;font color="#330000"&gt;C:\Windows\System32\inetsrv&amp;gt;&lt;/font&gt;&lt;/em&gt;&lt;/strong&gt;appcmd.exe unlock config /section:system.webserver/handlers&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;Here is an example of web.config file with managed type as the handler. &lt;/p&gt;
&lt;p&gt;&lt;font color="#0000ff"&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;&lt;br /&gt;&lt;/font&gt;&lt;font color="#3300ff"&gt;&amp;lt;configuration&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;system.webServer&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;handlers&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;add name=&amp;quot;WildCard&amp;quot; path=&amp;quot;*&amp;quot; verb=&amp;quot;*&amp;quot; type=&amp;quot;sampletype&amp;quot; resourceType=&amp;quot;Unspecified&amp;quot; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/handlers&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/system.webServer&amp;gt;&lt;br /&gt;&amp;lt;/configuration&amp;gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;You can also configure the handler in IIS7 Manager, please take care of the precedence of the handlers in the&amp;nbsp;list in IIS7 Manager.&lt;/p&gt;</description></item><item><title>Wildcard application maps in IIS7 from Web.config?</title><link>http://forums.asp.net/thread/2263916.aspx</link><pubDate>Sat, 29 Mar 2008 17:18:42 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2263916</guid><dc:creator>blove57</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2263916.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=27&amp;PostID=2263916</wfw:commentRss><description>&lt;p&gt;Is there a way to turn on wildcard mapping in IIS7 from the Web.config file?&lt;span class="value"&gt; I have a .NET 3.5 website with a
few C# HTTP Modules such as URL redirect scripts that required
&amp;quot;Wildcard application maps&amp;quot; turned on for the .NET framework (pointed
to the same dll as what .aspx uses). Right now the website is running
on IIS6 and did this thru the IIS6 management console. But now I&amp;#39;ve
moved the website to a IIS7 shared hosting and now wanted to turn
Wildcard application mapping via the Web.config file. Is this possible?
I don&amp;#39;t have IIS7 console control since it&amp;#39;s shared.&lt;/span&gt; &lt;br /&gt;&lt;/p&gt;</description></item></channel></rss>