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

36023 questions
9
votes
1 answer

PHP ignoring curl.cainfo setting in php.ini (apparently)

I'm trying to fix a php_curl call on a Windows server (running IIS) that is returning the familiar error "SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify…
mercurial
  • 4,193
  • 3
  • 23
  • 17
9
votes
1 answer

CSS, Javascript and Images have zero length

I'm trying to port an ASP.NET MVC 1.0 / Visual Studio 2008 project to ASP.NET MVC RC 2 / Visual Studio 2010. The project is (and has always been) running on IIS 7. Dynamic content (everything that's being delivered by controllers) works fine, but…
Adrian Grigore
  • 31,759
  • 32
  • 127
  • 205
9
votes
0 answers

Does HttpRuntime.UnloadAppDomain abruptly terminate current requests?

In ASP.NET, when you modify web.config file, IIS will recycle the app pool. Now, I am storing my configs in the DB instead of web.config and would like to simulate a similar behavior. My current solution is to call HttpRuntime.UnloadAppDomain(). The…
Tu Hoang
  • 4,104
  • 12
  • 30
  • 46
9
votes
5 answers

WCF timing out too soon & 'Connection was closed unexpectedly' exception

A WCF client returns the above exception after 120 seconds when calling a method which returns a string "success". Logs from the server show it executes fully and completes in around 3 minutes. With tracing enabled I see no errors thrown. Any help…
Marcus
  • 7,753
  • 10
  • 40
  • 65
9
votes
1 answer

What is expected for DeployIisAppPath setting on MSBuild argument?

SERVERNAME(myDomain\Username) Application Pools Sites DEV Site1 DEV Site2 dev Site 3 bin Content ... Views etc ... This is my basic layout of our DEV web server. Our DEV web server…
MADCookie
  • 2,546
  • 3
  • 25
  • 46
9
votes
4 answers

Securing Large Downloads Using C# and IIS 7

Here's the setup: 1 web server running a C# app to which my users (stored in a MySQL database on said server) authenticate. 1 file server running software TBD. In the past I've used lighttpd and mod_secdownload to secure the files on the file…
Stephen Fischer
  • 2,177
  • 2
  • 21
  • 36
9
votes
1 answer

Why the Ajax script is not running on IIS 7.5 Win 2008 R2 server?

I have a web app that works fine on VS 2013 on my development server, but once I published it on the IIS 7.5 2008 R2 server the Ajax scripts, located on my custom script file, don't work anymore, although the other JQuery scripts that do not call…
Ben Junior
  • 2,026
  • 7
  • 26
  • 39
9
votes
9 answers

DELETE/PUT verbs result in 404 Not Found in WebAPI, only when running locally

I know this is a commonly addressed issue, and I've done everything that many posts here on SO suggest. When I try to delete a record using WebAPI (version 2) from my MVC5 front end running under local IIS, I get a 404 Not Found response. Here are…
Mike Marks
  • 9,463
  • 15
  • 61
  • 120
9
votes
1 answer

How do you turn on gzip compression for SVG files in IIS?

I have created a web.config file that successfully turns on static compression for text and message resources. However, the obvious solution shown below does not seem to have any affect on .svg compression (validated that gzip content encoding not…
user3072310
  • 91
  • 1
  • 4
9
votes
2 answers

Mixing Forms and Windows authentication in .Net 4.5

This has been possible up to .Net4.0 and IIS 7.5. The general idea is that you enable anonymous and forms authentication for your intranet site and in a subdirectory you enable windows authentication together with forms authentication and turn off…
Fiffe
  • 187
  • 1
  • 1
  • 11
9
votes
4 answers

How to trace overhead added by Application Request Routing?

We have a Delphi SOAP service which needs to be SSL-enabled. I opted to use an IIS ARR reverse proxy to do SSL offloading for ease of configuration (compared to OpenSSL and manual certificate + passphrase management). ARR works, but it adds an…
carlmon
  • 386
  • 5
  • 19
9
votes
4 answers

How to get "Browse" URL for web site in IIS using C#?

Say, I have the "Site Name" web site in the IIS. I can access most of its functions via the ServerManager class from my C# code. What I can't seem to figure out is how to get the "Browse" URL for it, like I showed on the screenshot below? If I go…
c00000fd
  • 18,074
  • 19
  • 132
  • 318
9
votes
5 answers

Unauthorized access error to html pages in IIS 7.0

I am using VSTS 2008 + C# + .Net 3.5 + IIS 7.0. I have created a new web site and put an html file into the directory. And when I use browse function in IIS manager to browse the html file, I met with the following error, any ideas what is…
George2
  • 42,353
  • 103
  • 307
  • 447
9
votes
1 answer

Why does AppDomain.CurrentDomain.GetAssemblies() not return dependant assemblies in Global.asax under certain conditions?

EDIT: This was previously entitled "App Init behaviour different between IIS Restart and Application Initialisation". I have changed the title to expand the question out from IIS/Application Initialisation because the observed behaviour relates to…
Redeemed1
  • 3,786
  • 7
  • 33
  • 59
9
votes
5 answers

Config Error Failed to decrypt attribute 'password'

Module IIS Web Core Notification Unknown Handler Not yet determined Error Code 0x8007000d Config Error Failed to decrypt attribute 'password' Config File Unavailable (Config Isolation) When i run my app im getting this error and i couldn't…
WeyCell
  • 193
  • 1
  • 1
  • 10
1 2 3
99
100