<?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>ASP Experts &#187; routes</title>
	<atom:link href="http://www.aspexperts.com/tag/routes/feed" rel="self" type="application/rss+xml" />
	<link>http://www.aspexperts.com</link>
	<description>.net programming, mssql, c#, vb.net....</description>
	<lastBuildDate>Fri, 03 Feb 2012 19:26:00 +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>Editable Routes In Medium Trust</title>
		<link>http://www.aspexperts.com/editable-routes-in-medium-trust</link>
		<comments>http://www.aspexperts.com/editable-routes-in-medium-trust#comments</comments>
		<pubDate>Mon, 18 Jan 2010 19:17:01 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[ASP.NET MVC]]></category>
		<category><![CDATA[aspnetmvc]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Reference]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[app_code]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[host]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[routes]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[vb.net]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Yesterday I wrote about a technique using dynamic compilation to allow editing routes after you’ve deployed an application without having to manually recompile your application. I made use of a FileSystemWatcher to monitor a Config directory and dynamically recompiled code when the code file changed. This has one advantage over using the App_Code directory in that the whole App Domain doesn’t need to get recycled when you make changes to your routes. Today, my co-worker David Ebbo (who’s a master at ASP.NET Build and Compilation system) pointed out one gaping flaw with my approach. It doesn’t work in Medium Trust because the FileSystemWatcher class demands full trust . Doh! For many business systems, that may not be a concern. But for my blog...(<a href="http://haacked.com/archive/2010/01/18/editable-routes-in-medium-trust.aspx">read more</a>)<img src="http://weblogs.asp.net/aggbug.aspx?PostID=7314970" width="1" height="1">]]></description>
			<content:encoded><![CDATA[<p>Yesterday I wrote about a technique using dynamic compilation to allow editing routes after you’ve deployed an application without having to manually recompile your application. I made use of a FileSystemWatcher to monitor a Config directory and dynamically recompiled code when the code file changed. This has one advantage over using the App_Code directory in that the whole App Domain doesn’t need to get recycled when you make changes to your routes. Today, my co-worker David Ebbo (who’s a master at ASP.NET Build and Compilation system) pointed out one gaping flaw with my approach. It doesn’t work in Medium Trust because the FileSystemWatcher class demands full trust . Doh! For many business systems, that may not be a concern. But for my blog&#8230;(<a href="http://haacked.com/archive/2010/01/18/editable-routes-in-medium-trust.aspx">read more</a>)<img src="http://weblogs.asp.net/aggbug.aspx?PostID=7314970" width="1" height="1"></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aspexperts.com/editable-routes-in-medium-trust/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Editable Routes</title>
		<link>http://www.aspexperts.com/editable-routes</link>
		<comments>http://www.aspexperts.com/editable-routes#comments</comments>
		<pubDate>Mon, 18 Jan 2010 06:24:21 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[ASP.NET MVC]]></category>
		<category><![CDATA[aspnetmvc]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Reference]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[assembly]]></category>
		<category><![CDATA[buildmanager]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[filesystemwatcher]]></category>
		<category><![CDATA[host]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[routes]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[vb.net]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[In general, once you deploy your ASP.NET MVC application, you can’t change the routes for your application without recompiling the application and redeploying the assembly where your routes are defined. This is partly by design as routes are generally considered application code , and should have associated unit tests to verify that the routes are correct. A misconfigured route could seriously tank your application. Having said that, there are many situations in which the ability to change an application’s routes without having to recompile the application comes in very handy. This is the situation I find myself in as I build a blog engine where the folks who will install may want to tweak the routes without having to recompile the blog’s source...(<a href="http://haacked.com/archive/2010/01/17/editable-routes.aspx">read more</a>)<img src="http://weblogs.asp.net/aggbug.aspx?PostID=7314229" width="1" height="1">]]></description>
			<content:encoded><![CDATA[<p>In general, once you deploy your ASP.NET MVC application, you can’t change the routes for your application without recompiling the application and redeploying the assembly where your routes are defined. This is partly by design as routes are generally considered application code , and should have associated unit tests to verify that the routes are correct. A misconfigured route could seriously tank your application. Having said that, there are many situations in which the ability to change an application’s routes without having to recompile the application comes in very handy. This is the situation I find myself in as I build a blog engine where the folks who will install may want to tweak the routes without having to recompile the blog’s source&#8230;(<a href="http://haacked.com/archive/2010/01/17/editable-routes.aspx">read more</a>)<img src="http://weblogs.asp.net/aggbug.aspx?PostID=7314229" width="1" height="1"></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aspexperts.com/editable-routes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

