IIS (Internet Information Services) Version 7 ā is a web server application and a set of feature extension modules created by Microsoft for use with Microsoft Windows.
52
votes
9answers
23k views
Enable IIS7 gzip
How can I enable IIS7 to gzip static files like js and css and how can I test if IIS7 is really gziping them before sending to the client?
Thanks!
47
votes
9answers
11k views
How do I remove eTag headers from IIS7?
Per Yahoo's best practices for high performance web sites, I'd like to remove Etags from my headers (I'm manually managing all my caching and have no need for Etags... and when/if I need to scale to a ...
33
votes
1answer
11k views
What is the difference between classic and integrated in IIS7?
I was deploying an ASP.NET MVC application last night, and found out that it is less work to deploy with IIS7 set to integrated mode. My question is what is the difference? And what are the ...
31
votes
1answer
2k views
why does IIS7 static/dynamic compression only work for 200 responses?
Why is IIS7.5 only performing static and dynamic compression when the response code is 200?
How do I make it compress all responses where the request had an appropriate Accept-Encoding header?
...
31
votes
5answers
9k views
IIS7 Overrides customErrors when setting Response.StatusCode?
Having a weird problem here. Everybody knows that if you use web.config's customErrors section to make a custom error page, that you should set your Response.StatusCode to whatever is appropriate. For ...
27
votes
7answers
16k views
How can I get gzip compression in IIS7 working?
I have installed Static and dynamic compression for IIS7, as well as setting the two web.config values at my application ( Virtual Folder ) level. As I understand it, I don't need to enable ...
26
votes
3answers
918 views
Bug in MVC3 - requests never time out. Works fine for aspx pages in same project
I'm seeing this on our production site as well as a small test site I setup just to test this out...
Basically, it appears that requests handled by mvc never time out. I've set an executionTimeout ...
26
votes
2answers
6k views
Is Enabling Double Escaping Dangerous?
I have an ASP.NET MVC application with a route that allows searching for stuff via /search/<searchterm>.
When I supply "search/abc" it works well, but when I supply "/search/a+b+c" (correctly url ...
26
votes
13answers
36k views
System.Security.SecurityException when writing to Event Log
Iām working on trying to port an ASP.NET app from Server 2003 (and IIS6) to Server 2008 (IIS7).
When I try and visit the page on the browser I get this:
Server Error in ā/ā Application.
...
24
votes
4answers
10k views
IIS7 Cache-Control
I'm trying to do something which I thought would be fairly simple. Get IIS 7 to tell clients they can cache all images on my site for a certain amount of time, let's say 24 hours.
I have tried the ...
22
votes
8answers
39k views
SMTP not working in windows 7
How can I get SMTP to work on Windows 7 (developer box). I used to just be able to turn it on for a windows XP box. Is SMTP not included on windows 7? If so, what can I use instead as a free relay ...
21
votes
3answers
6k views
Using Custom Domains With IIS Express
Traditionally I have used customer 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 ...
20
votes
8answers
8k views
Steps to Investigate Cause of Web.Config Duplicate Section
Symptoms
In IIS 7 and Dot Net 2.0 Integrated app pool: double clicking to view any
web.config section results in a the
following error dialog.
Browsing to the URL displays: "Http 500.19" ...
20
votes
4answers
5k views
Add IIS 7 AppPool Identities as SQL Server Logons
I'm running an IIS 7 Website with an AppPool of Integrated Pipeline Mode.
The AppPools does NOT run under NetworkService, etc.. identity (by purpose), but uses it's own AppPool Identitiy (IIS ...
20
votes
1answer
7k views
How to disable the application pool idle time-out in IIS7?
Will it be disabled if I set the idle time-out to 0?
19
votes
6answers
4k views
GZip compression with WCF hosted on IIS7
Everyone, as far as I'm concerned the question is ansered in EDIT 2. Although it's only a partial solution to the IIS side of the problem, it's what I was looking for.
So I'm going to add my query ...
18
votes
6answers
6k views
Server cannot set status after HTTP headers have been sent IIS7.5
Sometimes I get exception in my production environment:
Process information
Process ID: 3832
Process name: w3wp.exe
Account name: NT AUTHORITY\NETWORK SERVICE
Exception ...
17
votes
4answers
12k views
Problem running MVC3 app in IIS 7
I am having a problem getting a MVC 3 project running in IIS7 on a computer running Windows 7 Home-64 bit. Here is what I did.
Installed IIS 7.
Accessed the server and got the IIS welcome page.
...
16
votes
6answers
5k views
Remove Server Response Header IIS7
Is there any way to remove "Server" response header from IIS7? There are some articles showing that using HttpModules we can achieve the same thing. This will be helpful if we don't have admin right ...
16
votes
4answers
11k views
Is there a practical HTTP Header length limit?
I have a web application that adds contextual information to XmlHttpRequest objects using the setRequestHeader API. I am using a custom header name (e.g. X-Foo) and a JSON structured value. It isn't ...
16
votes
5answers
21k views
What is the difference between DefaultAppPool and Classic .NET AppPool in IIS7?
I have a problem with timeouts in IIS. In the web.config the session timeout was set to 60 minutes but after 20 minutes the session ends.
This problem only occurs in IIS7 and not in IIS5.
After ...
16
votes
5answers
5k views
How to setup GIT bare HTTP-available repository on IIS-machine
server already runs IIS to serve 80 and 443 port over TCP. I want to make centralized "push/pull" GIT repository available to all my team members over the Internet.
So I should use HTTP or HTTPS.
...
15
votes
3answers
4k views
Asp.net 4.0 has not been registered
When I try to open visual studio project I get following error.
Asp.Net has not been registered on the webserver you need to manually configure your webserver for Asp.net 4.0.
Update:
Never mind I ...
15
votes
4answers
826 views
Workaround for HttpContext.HideRequestResponse being internal? Detect if HttpContext.Request is really available?
We're migrating an application to use IIS7 integrated mode. In library code that is designed to work either within the context of an HTTP request or not, we commonly have code like this:
if ...
15
votes
4answers
17k views
How do you migrate an IIS 7 site to another server?
I'm new to the IIS world but am wondering the best practice for moving a website to another server (along with all settings, etc.)
Manually recreate the site on the new server (not maintainable for ...
14
votes
3answers
17k views
Avoid web.config inheritance in child web application using inheritInChildApplications
I am trying to add
<location inheritInChildApplications="false">
to my parent web application's web.config but it doesn't seem to be working.
My parent's web.config has:
...
14
votes
4answers
7k views
How do I install an ASP.Net MVC application on IIS 7 using Wix?
For IIS6 I can use the IIS helpers in Wix to install a web application like this:
<iis:WebAppPool
Id="AP_MyApp"
Name="My Application Pool"
Identity="networkService" />
...
14
votes
6answers
3k views
Windows Server 2008 as development machine - step by step
I have found many tutorials about using Windows Server 2003 as a development machine, and very little information about Windows Server 2008 for the same purpose.
For a nicer experience, I have ...
14
votes
6answers
63k views
Setting up SMTP under IIS 7 on Windows Server 2008
Website started life originally under IIS 6 and the site worked great there. Now after relocating to a new server running W2K8S, everything but mail delivery from the website now works great under IIS ...
13
votes
4answers
8k views
IIS7 deployment - duplicate 'system.web.extensions/scripting/scriptResourceHandler' section
On attempting to deploy a .net 3.5 website on the default app pool in IIS7 having the framework section set to 4.0, I get the following error.
There is a duplicate ...
13
votes
2answers
3k views
How do I compress a Json result from ASP.NET MVC with IIS 7.5
I'm having difficulty making IIS 7 correctly compress a Json result from ASP.NET MVC. I've enabled static and dynamic compression in IIS. I can verify with Fiddler that normal text/html and similar ...
13
votes
6answers
1k views
Turn off Visual Studio Attach security warning when debugging IIS
When using Visual Studio 2008 or 2010, every time you attach to IIS w3wp.exe you get an Attach Security Warning,
How do you turn this of?
It would be cool to know also, how to keep it attached for ...
12
votes
2answers
491 views
How does “Require SSL” affect ASP.NET MVC application lifecycle?
I have an application that taps into BeginRequest and EndRequest to set up and tear down NHibernate sessions like this:
BeginRequest += delegate
{
...
12
votes
4answers
28k views
How to register ASP.NET 2.0 to web server(IIS7)?
I have a web-page application already created, but when I open it in visual studio 2008, it says there that:
ASP.NET 2.0 has not been registered on the Web Server. You need to
manually configure ...
12
votes
3answers
7k views
How to assign a SSL Certificate to IIS7 Site from Command Prompt
Can you advise me whether it is possible or not to assign a SSL Certificate to a website in IIS7 using the APPCMD application?
I am familiar with the command to set the HTTPS Binding
appcmd set site ...
11
votes
4answers
420 views
How do I progressively render a header before content in ASP.NET master pages?
I have a large slow ASP.net site that uses master pages.
I've identified that the user will have a better experience if they can see the header and navigation while the rest of the page is being ...
11
votes
3answers
642 views
Thoughts on running Windows Service type apps on ASP .NET 4 with StartMode=“AlwaysRunning”
Usually I would look at writing a Windows Service to manage tasks that aren't suited to being hosted in a web application. These types of tasks are usually long running processes or scheduled tasks. ...
11
votes
2answers
6k views
How to configure static content cache per folder and extension in IIS7?
I would like to set up rules in IIS7 for static content caching in my ASP.NET website.
I have seen these articles, which details how to do it using the <clientCache /> element in web.config:
...
11
votes
1answer
9k views
Classic ASP on IIS7: refusing to send errors to browser on 500 Internal Server Error
I have classic ASP running on IIS 7.
Even though I configured the ASP "Debugging Properties" to "Send Errors to Browser = True", the web app REFUSES to send errors to the browser and continues to ...
11
votes
4answers
4k views
Why does debugging keep timing out in IIS7?
When I am debugging on my Windows 7 IIS7 machine, I get this error during a debug:
The web server process that was being
debugged has been terminated by IIS.
this can be avoided by configuring
...
11
votes
6answers
500 views
Strange 64/32-bit GUID issue under IIS7
One of my team has recently come across an interesting glitch in the matrix. If anyone can help explain this it'd be great. It is possibly a complicated to explain, so bear with me.
We are building ...
11
votes
5answers
8k views
Using WiX to create an IIS virtual directory
I'd ask this on the WiX mailing list, but it seems to be down.
I have an application which is both a desktop app and a web app which runs locally. I've created a couple of basic WiX installers, but ...
11
votes
3answers
17k views
System.Web.AspNetHostingPermission SecurityException when trying to use ManagedFusion Rewriter on Goddaddy
I wonder if someone could help me out with an issue I'm experiencing trying to get my site up and running on Goddaddy.
I'm trying to get extension-less url rewriting working using the ManagedFusion ...
11
votes
13answers
8k views
IIS7, SQL 2008 and ASP.NET MVC security
I have an ASP.NET MVC application that I'm working on. I've been developing it on Windows Server 2003 with IIS6 and SQL 2008 Express, and everything was working great. I recently decided to try out ...
11
votes
18answers
42k views
'JQuery' is undefined
I am working on a ASP.net project created with local file system settings. I am using MVC and Jquery. Jquery is working fine when I run the application in debug mode i.e. in ASP.net Development ...
11
votes
4answers
9k views
What is the worker process for IIS7?
I'm trying to do 'Attach to Process' for debugging in Visual Studio 2008 and I can't figure out what process to attach to. Help.
10
votes
4answers
9k views
Invalid application path
IIS7 Windows 7 64bit
No matter what I do I cant seem to add an application to a web site.
When I 'test settings' I get "Invalid application path"
Any one have a guess as to what I could be doing ...
10
votes
4answers
1k views
Preventing upload of large files in ASP.NET 4.0
We'd like to restrict the maximum upload file size in our web site. We've already set the appropriate limits in our web.config. The problem we're encountering is if a really large file (1 GB, for ...
10
votes
4answers
4k views
Display custom error page when file upload exceeds allowed size in ASP.NET MVC
My main issue is that I want to display an custom error page when an uploaded file exceeds allowed size (maxRequestLength in web.config).
When the big file is uploaded an HttpException is thrown ...
10
votes
7answers
5k views
Mixing Forms authentication with Windows authentication
I have an (ASP.NET 3.5) intranet application which has been designed to use forms authentication (along with the default aspnet membership system). I also store additional information about users in ...