iis-express

Using Custom Domains With IIS Express

烈酒焚心 提交于 2019-11-26 01:30:59
问题 Traditionally I use custom domains with my localhost development server. Something along the lines of: dev.example.com dev.api.example.com This has provided me a ton of flexibility when working with external API\'s such as Facebook. This has worked great in the past with the built in Visual Studio Development Server, because all I needed to do was add a CNAME to those DNS records pointing to 127.0.0.1 . However I have not been able to get this to work with IIS Express. Everything I have tried

How to enable external request in IIS Express?

≡放荡痞女 提交于 2019-11-26 01:20:29
问题 How can I enable remote requests in IIS Express? Scott Guthrie wrote that is possible but he didn\'t say how. 回答1: There's a blog post up on the IIS team site now explaining how to enable remote connections on IIS Express. Here is the pertinent part of that post summarized: On Vista and Win7, run the following command from an administrative prompt: netsh http add urlacl url=http://vaidesg:8080/ user=everyone For XP, first install Windows XP Service Pack 2 Support Tools. Then run the following

Visual Studio debugging/loading very slow

风流意气都作罢 提交于 2019-11-26 01:09:47
问题 I\'m at wits end. Visual Studio is typically painfully slow to debug or just plain load (\"start without debugging\") my ASP.NET MVC sites. Not always: at first, the projects will load nice and fast, but once they load slow, they\'ll always load slow after that. I could be waiting 1-2 minutes or more. My setup: I\'m using Visual Studio 2012 Express, currently, but I\'ve had the same problem in Visual Studio 2010 Express as well. My solution is stored on a network drive; specifically, it\'s My

IIS Express Windows Authentication

那年仲夏 提交于 2019-11-26 00:35:09
问题 I\'m trying to use IIS Express with VS2010 to host a silverlight application. I modified my applicationhost.config file to allow for modification of the proper configuration settings. I have the following in my web.config: <location path=\"\"> <system.webServer> <security> <authentication> <anonymousAuthentication enabled=\"false\" /> <windowsAuthentication enabled=\"true\" /> </authentication> </security> </system.webServer> </location> I am not being authenticated and my domain service call

Dots in URL causes 404 with ASP.NET mvc and IIS

余生长醉 提交于 2019-11-25 21:47:06
问题 I have a project that requires my URLs have dots in the path. For example I may have a URL such as www.example.com/people/michael.phelps URLs with the dot generate a 404. My routing is fine. If I pass in michaelphelps, without the dot, then everything works. If I add the dot I get a 404 error. The sample site is running on Windows 7 with IIS8 Express. URLScan is not running. I tried adding the following to my web.config: <security> <requestFiltering allowDoubleEscaping=\"true\"/> </security>