iis-express

Process with an ID #### is not running in visual studio professional 2013 update 3

笑着哭i 提交于 2019-11-26 08:47:37
问题 I am trying to run any program on visual studio 2013 update 3 and I get the following alert box : Process with an ID #### is not running . // every time there is different ID number showing and in the error windows I get this error msg: The program \'[3148] iisexpress.exe\' has exited with code -1073741816 (0xc0000008) \'An invalid handle was specified\'. Sometimes it runs and in the browser i get the following message : The webpage is not available. I have looked around and try almost

Binding IIS Express to an IP Address [duplicate]

爱⌒轻易说出口 提交于 2019-11-26 07:53:30
问题 This question already has an answer here: How to enable external request in IIS Express? 23 answers Is it possible to use IIS Express to host pages on a network. Out of the box it can do localhost but I am trying to bind it to an IP address. 回答1: I think you can. To do this you need to edit applicationhost.config file manually (edit bindingInformation ' <ip-address>:<port>:<host-name> ') To start iisexpress, you need administrator privileges 回答2: In order for IIS Express answer on any IP

Can&#39;t get IIS Express 8 beta to run website as 64-bit process

佐手、 提交于 2019-11-26 06:29:46
问题 on x64 Windows 7 I am trying to get hello world MVC 3 website running as 64-bit process (so Environment.Is64BitProcess returns true on a page) using IIS Express 8 latest beta. IIS Express 7.5 is 32 bit but IIS Express 8 does support 64 bit (http://learn.iis.net/page.aspx/1266/iis-80-express-beta-readme/). Can\'t get any 64-bit love. Building AnyCpu returns Is64BitProcess false, building x64 gives \"An attempt was made to load a program with an incorrect format. \" as if it was trying to run

Authentication issue when debugging in VS2013 - iis express

最后都变了- 提交于 2019-11-26 06:14:49
问题 I\'m trying to pick up the windows username when debugging in Visual Studio 2013. I am simply using: httpcontext.current.user.identity.name If I run this on my Dev Server it works fine, if I run it in debug mode on any previous version of Visual Studio it also works fine. My problems is - If i run this on visual studio 2013 I get an empty string. My web config is as follows. <system.web> <authentication mode=\"Windows\"/> <identity impersonate=\"false\"/> <authorization> <allow users=\"*\"/>

Creating virtual directories in IIS express

痴心易碎 提交于 2019-11-26 06:04:36
问题 Is there any way to create a virtual directory in IIS express? I know that Cassini can\'t do this and it would be nice to be able to do this without using a full version of IIS. I\'ve got it so far that I can browse to my application locally in IIS express like this: http://localhost:1132/ What I would like to do is create a virtual directory called \"OffSiteStuff\" and point it to some location on my C drive, like \"c:\\offsitestuff\" and then browse to items in that folder like this: http:/

Add MIME mapping in web.config for IIS Express

老子叫甜甜 提交于 2019-11-26 04:59:52
问题 I need to add a new MIME mapping for .woff file extensions to IIS Express. If I add the following snippet to the \"applicationhost.config\" of IIS Express it works fine: <staticContent lockAttributes=\"isDocFooterFileName\"> <mimeMap fileExtension=\".woff\" mimeType=\"font/x-woff\" /> ... But I would actually like to do add it to my \"web.config\" so that not every developer would need to change their \"applicationhost.config\" locally. So I removed it again from the \"applicationhost.config\

Unable to launch the IIS Express Web server

亡梦爱人 提交于 2019-11-26 02:27:33
问题 I have an asp.net MVC 4 solution. When I try to open it using Visual studio 2012, I get following error: Microsoft Visual Studio Configuring Web https://localhost: for ASP.NET 4.5 failed. You must manually configure this site for ASP.NET 4.5 in order for the site to run correctly. Could not find the server https://localhost:44300/ on the local machine. Make sure the local IIS server has been configured to support secure communications. OK Help Although the solution opens. Also, When I try to

Visual Studio debugging/loading very slow

試著忘記壹切 提交于 2019-11-26 02:26:41
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 Documents redirected to a network drive, if it matters. (It shouldn't. There are times where my site loads

Where is the IIS Express configuration / metabase file found?

半世苍凉 提交于 2019-11-26 02:05:17
问题 Where can the IIS Express configuration / metabase file be found? 回答1: The configuration file is called applicationhost.config . It's stored here: My Documents > IIS Express > config usually, but not always, one of these paths will work %userprofile%\documents\iisexpress\config\applicationhost.config %userprofile%\my documents\iisexpress\config\applicationhost.config Update for VS2019 If you're using Visual Studio 2019+ check this path: $(solutionDir)\.vs\{projectName}\config\applicationhost

Configure IIS Express for external access to VS2010 project

纵饮孤独 提交于 2019-11-26 01:56:32
问题 I am developing a project in VS2010 and am able to view my site locally via IIS Express. I would like to enable external access over the network. All my research has sent me to this blog entry: http://blogs.iis.net/vaidyg/archive/2010/07/29/serving-external-traffic-with-webmatrix-beta.aspx, which is helpful but does not seem to show how to configure bindings for a project started in visual studio (I cannot find the screen in the screenshots, and I have edited binding info in applicationhost