IIS 6 Configuration interfering with ASP.NET MVC RC1 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T21:56:47Z http://stackoverflow.com/feeds/question/554173 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/554173/iis-6-configuration-interfering-with-asp-net-mvc-rc1 0 IIS 6 Configuration interfering with ASP.NET MVC RC1 Cole B 2009-02-16T18:51:08Z 2009-02-16T18:51:08Z <p>I am using Netegrity's SiteMinder single sign on for a subset part of my development machine. Something like https://testdev.com/sm/testapp where /sm is my SiteMinder configured location.</p> <p>However, when I run ASP.NET MVC apps in a virtual directory under the /sm folder I get some unexpected results from Url.RouteUrl or Html.BeginRouteForm or any Url or Html helper method generating urls.</p> <p>First, if I run the default.aspx page, I receive urls with double names parts as in /sm/testapp/testapp/home/index where I would expect to see /sm/testapp/home/index. I have corrected this issue by doing a Response.Redirect("~/home/index") in the default.aspx.cs and removing the supplied implementation.</p> <p>I believe these are symptoms of how SiteMinder is set up in IIS 6. If I take a look at the MetaBase.xml I find the following for the /sm directory:</p> <pre><code>&lt;IIsConfigObject Location ="/LM/W3SVC/1/ROOT/sm" &gt; </code></pre> <p>and my test application configuration as follows:</p> <pre><code>&lt;IIsWebDirectory Location ="/LM/W3SVC/1/ROOT/sm/testapp" AccessSSLFlags="AccessSSL | AccessSSL128" AppFriendlyName="testapp" AppIsolated="2" AppRoot="/LM/W3SVC/1/Root/sm/testapp" DefaultDoc="Default.aspx,Default.htm,Default.asp,index.cfm,index.htm,index.html,iisstart.htm" ScriptMaps="* Lot of script maps related to 3.5 .Net" &gt; &lt;Custom Name="UNCPassword" ID="3003" Value="Large Number" Type="STRING" UserType="IIS_MD_UT_FILE" Attributes="INHERIT | SECURE" /&gt; </code></pre> <p>Is there something in how ASP.Net handles IIsConfigObject configuration items vs. regular virtual directories? Of course, if I set up a virtual directory and a nested virtual directory, the URL paths are what I would expect. Something in how the /sm directory is defined in IIS 6 is causing the paths and other URL generating routines to foul up.</p> <p>Any help on the IIsConfigObject would be great.</p>