ASP.NET Routing - Do Custom Routes COMPLETELY SKIP Everything in the Global.asax? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T15:44:37Zhttp://stackoverflow.com/feeds/question/400236http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/400236/asp-net-routing-do-custom-routes-completely-skip-everything-in-the-global-asax0ASP.NET Routing - Do Custom Routes COMPLETELY SKIP Everything in the Global.asax?Timothy Khouri2008-12-30T13:20:33Z2009-04-17T10:56:17Z
<p>I have a simple ASP.NET 3.5 SP1 Web Forms app... I've added the System.Web.Routing DLL, and I've made a simple route that returns a standard ASP.NET Page as the "IHttpHandler".</p>
<p>All is good... except that HttpContext.Current.User is <strong>null</strong> ???</p>
<p>So, I did a little more digging (I put breakpoints in all the events in the Global.asax file). Normally, these breakpoints get hit (when I navigate to a standard ".aspx" page):</p>
<ul>
<li>Application_BeginRequest</li>
<li>Application_AuthenticateRequest</li>
<li>Application_EndRequest</li>
</ul>
<p>But, when using ASP.NET Routing... none of those events are firing. Am I missing something?</p>
http://stackoverflow.com/questions/400236/asp-net-routing-do-custom-routes-completely-skip-everything-in-the-global-asax/400289#4002891Answer by Timothy Khouri for ASP.NET Routing - Do Custom Routes COMPLETELY SKIP Everything in the Global.asax?Timothy Khouri2008-12-30T13:51:52Z2008-12-30T13:51:52Z<p>Found the freakish and bizzare (and stupid) answer :)</p>
<p>If you don't add ".aspx" to the end of your route, nothing fires in the Global.asax, meaning you don't get any BeginRequest, AuthenticateRequest, EndRequest, etc... Also, you don't get SessionState or anything.</p>
<p>So, the "fix" was for me to just change my route from this:</p>
<pre><code>RouteTable.Routes.Add("Blah", new Route("Blah/{reportName}", new MyHandler());
</code></pre>
<p>to this:</p>
<pre><code>RouteTable.Routes.Add("Blah", new Route("Blah/{reportName}.aspx", new MyHandler());
</code></pre>
<p>How completely lame :) ... but it's a fix none-the-less!</p>
http://stackoverflow.com/questions/400236/asp-net-routing-do-custom-routes-completely-skip-everything-in-the-global-asax/436707#4367074Answer by Todd for ASP.NET Routing - Do Custom Routes COMPLETELY SKIP Everything in the Global.asax?Todd2009-01-12T19:36:26Z2009-01-12T19:36:26Z<p>Assuming you're using IIS6, the alternative is to define a "wild card" extension handler. Adding this simple "catch all" mapping to IIS6 will enable it to process your extensionless requests. By default, the .NET installer maps ".aspx" to the aspnet_isapi.dll- that's why the .aspx extension works. To map requests with no extension to the APS.NET engine, you must tell IIS to look at <em>every request</em>.</p>
<p>Here's a quick article that explains the process:</p>
<p><a href="http://haacked.com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx" rel="nofollow">http://haacked.com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx</a></p>
<p>Hope that helps and reduces the "lame" factor of your URLs. :)</p>
<p>-Todd</p>
http://stackoverflow.com/questions/400236/asp-net-routing-do-custom-routes-completely-skip-everything-in-the-global-asax/759792#7597920Answer by peter for ASP.NET Routing - Do Custom Routes COMPLETELY SKIP Everything in the Global.asax?peter2009-04-17T09:50:16Z2009-04-17T09:50:16Z<p>When you say </p>
<p>"If you don't add ".aspx" to the end of your route, nothing fires in the Global.asax, meaning you don't get any BeginRequest, AuthenticateRequest, EndRequest, etc... Also, you don't get SessionState or anything."</p>
<p>Will IIS log such requests in the log files or they are just anonymous? what about Application variables and ViewState?</p>
<p>sorry i haven't tested it yet, but just asking if you might already know?</p>
http://stackoverflow.com/questions/400236/asp-net-routing-do-custom-routes-completely-skip-everything-in-the-global-asax/759986#7599860Answer by peter for ASP.NET Routing - Do Custom Routes COMPLETELY SKIP Everything in the Global.asax?peter2009-04-17T10:56:17Z2009-04-17T10:56:17Z<p>i have checked application variable and Viewstate, these two are obviously working.. not sure about server logs :S</p>