<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Extensionless urls in ASP.NET MVC on IIS 6</title>
	<atom:link href="http://einaregilsson.com/extensionless-urls-in-asp-net-mvc-on-iis-6/feed/" rel="self" type="application/rss+xml" />
	<link>http://einaregilsson.com/extensionless-urls-in-asp-net-mvc-on-iis-6/</link>
	<description>A site for my programming pet projects</description>
	<lastBuildDate>Mon, 23 Jan 2012 07:51:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Dmitry</title>
		<link>http://einaregilsson.com/extensionless-urls-in-asp-net-mvc-on-iis-6/comment-page-1/#comment-70539</link>
		<dc:creator>Dmitry</dc:creator>
		<pubDate>Mon, 21 Dec 2009 13:20:37 +0000</pubDate>
		<guid isPermaLink="false">http://tech.einaregilsson.com/?p=129#comment-70539</guid>
		<description>I&#039;ve just finished the detailed article on how 
to use the same 404 error approach but with working posbacks!

http://elitebrains.com/blogs/view/asp-net/4/iis-6-and-asp-net-mvc-extensionless-urls-that-work-even-in-postbacks</description>
		<content:encoded><![CDATA[<p>I&#8217;ve just finished the detailed article on how<br />
to use the same 404 error approach but with working posbacks!</p>
<p><a href="http://elitebrains.com/blogs/view/asp-net/4/iis-6-and-asp-net-mvc-extensionless-urls-that-work-even-in-postbacks" rel="nofollow">http://elitebrains.com/blogs/view/asp-net/4/iis-6-and-asp-net-mvc-extensionless-urls-that-work-even-in-postbacks</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: einar</title>
		<link>http://einaregilsson.com/extensionless-urls-in-asp-net-mvc-on-iis-6/comment-page-1/#comment-41313</link>
		<dc:creator>einar</dc:creator>
		<pubDate>Sun, 23 Nov 2008 11:52:48 +0000</pubDate>
		<guid isPermaLink="false">http://tech.einaregilsson.com/?p=129#comment-41313</guid>
		<description>Ok. Well, this is where the hack breaks down :). You might try to change the method somehow but I&#039;m not sure where the digest authentication takes place so maybe you couldn&#039;t do it until after that. Better just to try and get IIS 7.</description>
		<content:encoded><![CDATA[<p>Ok. Well, this is where the hack breaks down <img src='http://einaregilsson.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . You might try to change the method somehow but I&#8217;m not sure where the digest authentication takes place so maybe you couldn&#8217;t do it until after that. Better just to try and get IIS 7.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jman</title>
		<link>http://einaregilsson.com/extensionless-urls-in-asp-net-mvc-on-iis-6/comment-page-1/#comment-40226</link>
		<dc:creator>Jman</dc:creator>
		<pubDate>Fri, 21 Nov 2008 13:41:56 +0000</pubDate>
		<guid isPermaLink="false">http://tech.einaregilsson.com/?p=129#comment-40226</guid>
		<description>Yes, the request actually contains the post data, it&#039;s just the method is set to &quot;GET&quot;.  This is a problem for me, because the spec that I am coding against requires we use &quot;digest&quot; authenication, and the string value of the http method is used as part of the hashing, so the problem is the client hashes with the literal &quot;POST&quot; and on the server it hashes with the literal &quot;GET&quot;, which makes the clientHash != serverHash, and throws back an error.</description>
		<content:encoded><![CDATA[<p>Yes, the request actually contains the post data, it&#8217;s just the method is set to &#8220;GET&#8221;.  This is a problem for me, because the spec that I am coding against requires we use &#8220;digest&#8221; authenication, and the string value of the http method is used as part of the hashing, so the problem is the client hashes with the literal &#8220;POST&#8221; and on the server it hashes with the literal &#8220;GET&#8221;, which makes the clientHash != serverHash, and throws back an error.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: einar</title>
		<link>http://einaregilsson.com/extensionless-urls-in-asp-net-mvc-on-iis-6/comment-page-1/#comment-40113</link>
		<dc:creator>einar</dc:creator>
		<pubDate>Fri, 21 Nov 2008 08:57:19 +0000</pubDate>
		<guid isPermaLink="false">http://tech.einaregilsson.com/?p=129#comment-40113</guid>
		<description>I haven&#039;t run into that. When I did a post from a normal browser it seemed to work fine. But I might have just checked how many elements were in Request.Form, not the request method, maybe it is set to GET. Can you try to print out the contents of your Request.Form collection and see if that contains your postdata?</description>
		<content:encoded><![CDATA[<p>I haven&#8217;t run into that. When I did a post from a normal browser it seemed to work fine. But I might have just checked how many elements were in Request.Form, not the request method, maybe it is set to GET. Can you try to print out the contents of your Request.Form collection and see if that contains your postdata?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jman</title>
		<link>http://einaregilsson.com/extensionless-urls-in-asp-net-mvc-on-iis-6/comment-page-1/#comment-39770</link>
		<dc:creator>Jman</dc:creator>
		<pubDate>Thu, 20 Nov 2008 18:39:15 +0000</pubDate>
		<guid isPermaLink="false">http://tech.einaregilsson.com/?p=129#comment-39770</guid>
		<description>Does anyone else see the problem with mapping to a 404.aspx in which they lose the httpMethod off the request?   For example if I use from let&#039;s say a .net client the httpwebrequest, set my method to &quot;POST&quot;, and request the extensionless url, that IIS 6, loses the fact that is was &quot;POST&quot; and says it was a get. The reason this is an issue for me.</description>
		<content:encoded><![CDATA[<p>Does anyone else see the problem with mapping to a 404.aspx in which they lose the httpMethod off the request?   For example if I use from let&#8217;s say a .net client the httpwebrequest, set my method to &#8220;POST&#8221;, and request the extensionless url, that IIS 6, loses the fact that is was &#8220;POST&#8221; and says it was a get. The reason this is an issue for me.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

