Questions tagged [iis]

Internet Information Services (IIS) is a web server created by Microsoft for use with Microsoft Windows. Please mention which version of IIS you're running either in your question or by adding a version specific tag.

Wiki

IIS stands for Internet Information Services (IIS, formerly Internet Information Server) which is an extensible web server created by Microsoft for use with Microsoft Windows.

Several versions of IIS have shipped over the years, the most recent being:

  • IIS 10.0 - shipped with Windows 10 Fall Creators Update and Windows Server 2016
  • IIS 8.5 - shipped with Windows 8.1/Windows Server 2012 R2
  • IIS 8.0 - shipped with Windows 8/Windows Server 2012
  • IIS 7.5 - shipped with Windows 7/Windows Server 2008 R2
  • IIS 7.0 - shipped with Windows Vista/Windows Server 2008
  • IIS 6.0 - shipped with Windows 2003
  • IIS 5.1 - shipped with Windows XP Professional
  • IIS 5.0 - shipped with Windows 2000
  • IIS 4.0 - shipped with Windows NT Server/Workstation 4.0

Tag usage

The tag can be used for programming related problems when configuring IIS server for web development purposes. The tag can also be used for programming problems in implementing IIS services using IIS server.

Please note that https://serverfault.com/ is another StackExchange website, which can be used for more specific server installation and configuration related problems.

Important: Please ensure that you mention which version of IIS you're working with when asking a question. For example, there is a world of difference between IIS6 and IIS7+ and these products are very different, operationally and architecturally.

External Links

Related Tags

38900 questions
10
votes
1 answer

Microsoft Edge prompts for authentication when debugging

I'm using Visual Studio 2015 on a Windows 10 machine in a domain environment where I am not a local admin on the development PC. When I press F5 to start debugging my MVC project with Microsoft Edge I get a Windows Security prompt asking for…
lonelyoutpost
  • 161
  • 1
  • 2
  • 6
10
votes
1 answer

IIS Dynamic IP restrictions in web.config location

I'm trying to use IIS Dynamic IP Restrictions to throttle requests from the same IP. I have the module running and the requests are nicely throttled if I edit the dynamic restrictions settings from the IIS UI. This is nice however I need to have…
Jan Blaha
  • 3,069
  • 1
  • 22
  • 35
10
votes
1 answer

WCF over IIS through load balancer reports wrong base address

I'm trying to launch a WCF service over SSL on IIS 6 through a load balancer. My initial problem was an obvious and pretty well discussed one - the address shown on the WSDL page pointed to https://SERVERNAME/WebServices/mydomainws.svc instead of…
GeorgeBarker
  • 991
  • 1
  • 11
  • 7
10
votes
2 answers

Does RoleEnvironment.GetConfigurationSettingValue read every time from cfg file?

The azure role setting, is very useful since it lets you change values on-the-fly while IIS is running. But the problem is, if you have plenty users, and if it reads every time the config value from file, it is not best practice to use it without…
Festim Cahani
  • 317
  • 4
  • 18
10
votes
1 answer

IIS Application Pools fail in 32 Bit Mode in Windows 10

On my development machine, whenever I set an IIS Application pool to run in 32 bit mode, any Web application started will simply hang. When accessed in the browser the app will 'hang' for about 5-10 seconds, before receiving a 503 error. The…
Rick Strahl
  • 17,302
  • 14
  • 89
  • 134
10
votes
5 answers

ASP.NET Core application debugging without publishing on IIS

I used to use asp.net mvc4 and in IIS my website's physical path would point my solution directory, and every time I update my code, I just re-build my solution and then I can use "Attach to process" (w3wp) to start debugging. In asp.net core, when…
MapleStory
  • 628
  • 3
  • 11
  • 22
10
votes
2 answers

Is it possible to use ASP.NET Core Web API without IIS in a Windows Desktop application?

Currently I'm trying to find a way to build a desktop app that hosts a browser window and uses JavaScript to communicate with a local ASP.NET Core Web API as the "backend": All my searches lead to the suggestion that I should use IIS Express web…
Uwe Keim
  • 39,551
  • 56
  • 175
  • 291
10
votes
0 answers

The connection was reset in IIS 7 for HTTP and HTTPS website after each server restart

I am currently hosting a website (running with MVC4 website) with HTTP and HTTPS in Windows Server 2008 R2 (IIS 7) However, after each server restart, the site will always show "The connection was reset". I have to manually reconfigure the "IP…
10
votes
2 answers

Angular force an undesired exclamation mark in url

When I click on this : home the url is localhost/Sites/App/#!/#%2Fhome When I click on this : home the url is localhost/Sites/App/#!/home But this only works on my computer, for my co-workers it's the…
CrunchyArtie
  • 417
  • 5
  • 18
10
votes
3 answers

IIS application missing Content-Encoding - gzip in Response Header

In Firebug the request header has the following entry: Accept-Encoding: gzip, deflate But there's no: Content-Encoding: gzip In the Response Header. Regardless of anything I've tried, following a number of answers on SO and other sites, nothing…
Jacques
  • 6,936
  • 8
  • 43
  • 102
10
votes
10 answers

Unable to start debugging on the web server. The web server could not find the requested resource

I'm having this error trying to debug my ASP.NET MVC app. I've set the app to "Use Local IIS Web server", and selected ASP.NET as the debugger. Running the site without debugging works just fine, but when I try to debug, I got this error: Unable to…
Saxman
  • 5,009
  • 11
  • 51
  • 72
10
votes
2 answers

Web Api Controller and Thread Pool

When a HTTP request is received by IIS, it hands off the request to the requested application in an application pool that is serviced by one or more worker processes. A worker process will spawn a thread from the shared thread pool (if required) to…
Oladipo Olasemo
  • 2,010
  • 24
  • 31
10
votes
2 answers

Why is App_Offline failing to work as soon as you it starts loading dlls?

Could anyone please help me with this. On the production site app_offline.htm works only till you start uploading dlls. As soon as you start uploading dlls it throws following error"Could not load file or assembly 'SubSonic' or one of its…
Manisha
10
votes
2 answers

dotnet publish-iis doesn't work

I have an ASP.NET Core RC2 Project, I'm trying to publish it to IIS and the command dotnet publish-iis ALWAYS gives: Asp.Net Core IIS Publisher Usage: dotnet publish-iis [arguments] [options] Arguments: The path to the project (project…
Vahid Amiri
  • 10,769
  • 13
  • 68
  • 113
10
votes
3 answers

Catastrophic Failure attaching to IISExpress

I'm having an issue where when I attempt to attach my debugger to IIS express, it fails with a "Unable to attach to the process. Catastrophic failure". It then kills my IIS Express session. I have no clue where to begin debugging this issue. Steps…
Sirpingalot
  • 447
  • 1
  • 5
  • 11