Internet Information Services (IIS, formerly Internet Information Server) is an extensible web server created by Microsoft for use with Windows NT family.[2] IIS supports HTTP, HTTPS, FTP, FTPS, SMTP and NNTP. It has been an integral part of the Windows NT family since Windows NT 4.0, though it may be absent from some editions (e.g. Windows XP Home edition), and is not active by default. Version 10
Questions tagged [iis-10]
1154 questions
7
votes
3 answers
How do I enable ISAPI DLLs for IIS 10 on Windows 10?
I've configured ISAPI DLLs for IIS 7.x for years, but this is the first time I've tried with Windows 10, and it is not working, and I cannot find any descriptions of how to do it successfully. I am working in Windows 10 Professional, and IIS and…

Cary Jensen
- 3,751
- 3
- 32
- 55
6
votes
1 answer
IIS 10 - HTTP Error 413.1 - Request Entity Too Large
I am having an issue posting a large file using IIS 10 and .Net.
The error code i receive is from IIS:
HTTP Error 413.1 - Request Entity Too Large
The request filtering module is configured to deny a request that exceeds the request content…

user2370664
- 381
- 5
- 8
- 30
6
votes
7 answers
Failed to Start Process with Commandline VSIISExeLauncher.exe in IIS 10.0
Thursday night, I was working on a project built in ASP.NET Core 2.1 (being prepared for ASP.NET Core 2.2) running on my local IIS 10.0 (not IIS Express) and was able to run it without any issue. Friday morning, after heading into the office, I was…

Psymon Adjani
- 115
- 1
- 10
6
votes
0 answers
HTTP Error 404.17 Not Found - IIS 10 on Windows Svr 2016
I am trying to serve up a website with web forms. This is an older project converted from framework 3.5 to 4.6.1. The error message I get is:
HTTP Error 404.17 - Not Found
The requested content appears to be script and will not be served by…

Matthew Allen
- 538
- 2
- 7
- 14
6
votes
2 answers
ASP.NET Core site not running on IIS, works fine from commandline
I'm building a new web application with ASP.NET Core, and have it running nicely in debug in Visual Studio.
I've added Serilog, using the rolling file sink, and that's working nicely too, from Visual Studio.
Then I've published the app (both…

Steen Tøttrup
- 3,755
- 2
- 22
- 36
6
votes
1 answer
.net output in Docker logs
I''m trying to get log output (Console.WriteLine(..)) in my Docker logs, but I'm getting zero avail.
I've tried:
Console.WriteLine(..)
Trace.WriteLine(..)
Flushing the console, flushing the trace.
I can see these outputs in a VS output window when…

Stuart.Sklinar
- 3,683
- 4
- 35
- 89
6
votes
1 answer
ERROR ( message:Cannot find requested collection element. ) Docker IIS
Getting error while running a docker container created by below file
FROM microsoft/iis
RUN mkdir C:\site
RUN powershell -NoProfile -Command \
Import-module IISAdministration; \
New-IISSite -Name "Site" -PhysicalPath C:\site…

rw1
- 61
- 1
- 4
6
votes
0 answers
Hosting Asp.NET Core on IIS + Kestrel: randomly slow response
I'm facing a problem with IIS + Kestrel hosting of asp.net core application (web api).
Sometimes response delay is about 5sec. In such case Chrome shows "GET net::ERR_CONNECTION_TIMED_OUT" (but Firefox waits until response)
It only happens on IIS,…

user1820686
- 2,008
- 5
- 25
- 44
6
votes
2 answers
web.config that worked under IIS 7.5 doesn't work under IIS 10
I have an ASP.NET web site running under IIS 7.5 Works great.
Now we're experimenting with a new Windows 10 server, which runs IIS 10. Copied the identical web site to the new server and try to open it:
HTTP Error 500.19 - Internal Server…

Shaul Behr
- 36,951
- 69
- 249
- 387
5
votes
1 answer
DevOps, Manage IIS Website task, netsh add sslcert, fails with error 1312
Trying to shift focus a bit based on initial feedback on the question.
In a DevOps release pipeline, using Manage IIS Website task, trying to add an https binding using a wildcard certificate. The certificate is in the local computer's certificate…

Kjell Rilbe
- 1,331
- 14
- 39
5
votes
2 answers
Understanding path normalization in IIS
I'd like to disable directory traversal like example.com/page/../other-page (even to real pages) in my IIS website. I've tried Request Filtering and URL Rewrites with a custom response.
The Microsoft documentation on the denyUrlSequences part of…

Michael
- 8,362
- 6
- 61
- 88
5
votes
1 answer
CSS folder not found on IIS .net core wwwroot
Somehow I decided to build my web API and client separately after several hours failed to combine .net core 2.2 with vue+vuetify.
I build the client using Vue CLI, with this config:
module.exports = {
publicPath: process.env.NODE_ENV ===…

SIRS
- 624
- 6
- 20
5
votes
3 answers
IIS 10 and HTTP/2 - require client certificate
Currently I'm testing web-application on IIS 10 using HTTP 1.1 and HTTP/2.
My test application has one endpoint (/api/test) which returns just 'true'.
I have 3 certificates:
Root CA (self-signed)
Server certificate signed by Root CA
Client…

dmgx0
- 131
- 1
- 8
5
votes
1 answer
HTTP Error 500.19 - Internal Server Error after hosting the Angular 4 app
I have hosted my Angular 4 application in server system ,Initially I got 404 error So I have added a web.config file with my production build folder .Now I got this error.
But the app is running fine on my local system ,it throws error the server…

Vinil
- 53
- 1
- 3
5
votes
2 answers
ASP.net Core Application Hanging on Requests
We have a ASP.net core 2.0 application running in .Net Framework V4.7.1 hosted in IIS using Kestrel.
The application works fine on most machines, however on when running on my machine it is really slow. I have stripped down the application to a…

user1755802
- 81
- 1
- 6