Questions tagged [iis-6]

IIS 6.0 is the version of IIS shipped with Windows Server 2003. It uses an architecture substantially different from IIS 5 and earlier versions, called Worker Process Isolation Mode.

IIS 6.0 is the version of IIS shipped with Windows Server 2003. It uses an architecture substantially different from IIS 5 and earlier versions, intended to increase security and performance, called Worker Process Isolation Mode.

Key changes from IIS 5.0:

  • Uses HTTP.SYS as a fast, secure kernel-mode listener, cache, and correctness parser for HTTP requests - instead of InetInfo, which ran ISAPIs and user code as LocalSystem
  • Isolates all user web code into low-privileged processes, which run as Network Service by default
  • Introduces the concept of an Application Pool; Application Pools group IIS applications into worker processes, which helps Admins isolate failures to specific processes and not the whole server (as was the case with InetInfo / Low-isolation applications in IIS 5 and earlier)
  • Introduces the Web Service Extension list, which restricts arbitrary executable code
  • Uses a central App Pool manager service, W3ADM, which monitors the health of App Pools and recycles them when needed.
1000 questions
4
votes
2 answers

Disable .net completely in a IIS6 Application Pool

we're managing some web sites for our clients on our servers, some running Windows Server 2003 R2 and others running 2008 R2. In Windows Server 2008 R2, we can disable completely .NET framework usage for some application pools, which is great since…
4
votes
1 answer

IIS6 Website 'breaks' when viewed using Safari Browser

I have an application that is using ASP.NET 4.0 Webforms on IIS 6.0 that has been operational for multiple years. A recent deployment to the app has caused some very random (to us) intermittent issues in the Safari browser (not any other…
S.Kiers
  • 161
  • 5
4
votes
2 answers

Does MSDEPLOY Produce a Log of its Actions for Audit Purposes?

We just had a situation where someone performed a deployment into the wrong system at the wrong time, yet nobody knows who did it, or when. I looked in the Windows Event Logs on the target web server, and saw nothing that seemed to be from MSDEPLOY.…
John Saunders
  • 425
  • 7
  • 22
4
votes
1 answer

Windows 2003, IIS 6, msxml3.dll error '80072ee2' The operation timed out

Hopefully, this is the right Stack Exchange site to post this... We have set up a new intranet web server (Windows 2003 - IIS 6). I have everything migrated over from the old server and the new webserver seems to be working well, except for…
Soren
  • 141
  • 1
  • 4
4
votes
2 answers

Installing a certificate without the CSR's originating website in IIS 6

It seems the common method for installing a new SSL certificate for a site on IIS 6 is to create a temporary site, generate a CSR with the parameters of the real site, and then fulfill that CSR when the certificate is given. This is all well and…
jeffcook2150
  • 225
  • 1
  • 2
  • 7
4
votes
1 answer

SSL enabled webpage does not prompt for client certificate

Summary: We have two different Windows Server + II6 environments that are SSL enabled. Where one behaves the way we want and the other does not. Server Configurations: Windows Server 2003 SP2 IIS 6 Pages are configured for SSL client…
Sai
  • 223
  • 3
  • 11
4
votes
7 answers

Load balanced IIS Servers with ASP.NET InProc Session

Has anyone configured IIS 6.0 loadbalancing on win 2003 servers with ASP.NET app using InProc Sessions. How can this be achieved?
4
votes
4 answers

SSL and domain with WWW or without WWW

why does my ssl work only for domain.co.il and not for www.domain.co.il is it like i read, that we need to order the SSL twice? and what can be done about it, if this is the truth? how can it be redirected?
Y.G.J
  • 317
  • 5
  • 14
4
votes
2 answers

Using Google Analytics to track Usernames

We have a SharePoint Installation (MOSS, IIS 7.0, Windows Authentication, Windows 2008) and Google Analytics has been installed to track site usage. The site is an intranet site, and all users are authenticated before gaining access. Is there any…
DrStalker
  • 6,946
  • 24
  • 79
  • 107
4
votes
3 answers

How can I rewrite urls (ala mod_rewrite) for free in IIS 6?

I've got an application I wrote (with cakephp) for the lamp stack and I'm moving it to a windows server. I'm having a lot of trouble with apache for windows (memory and cpu issues) so I would like to use the existing installation of IIS v6 but it…
reconbot
  • 2,455
  • 3
  • 25
  • 30
4
votes
1 answer

Configure IIS 6.0 to serve all file extensions, even unknown ones

I have a problem with IIS: if I ask an unknown file extension, such as .flv, it doesn't serve it and displays "page not found". I can configure it in the Mime Types, but I want to be able to specify a wildcard, like in IIS 7, where I can allow all…
Nir
  • 154
  • 1
  • 7
4
votes
2 answers

Windows/IIS Hosting :: How much is too much?

I have 4 Windows 2003 servers running IIS 6. These servers host a bunch of unique web sites (in that they are all different in build/architecture/etc). The code behind these sites range from straight HTML, classic ASP, and 1.1/2.0/3.x flavors of…
bsisupport
4
votes
5 answers

IIS 6 + ASP.NET web service - DW20 and stackoverflow exception

Consider an ASP.NET SOAP web service that starts up fine, but craters hard when receiving its first hit. Please note that this is deployment works in the Test environment, but not in the PreProd environment. Both are Windows 2003 SP3 + IIS 6 +…
p.campbell
  • 4,407
  • 6
  • 41
  • 51
4
votes
3 answers

Elegantly Enforcing SSL in IIS 6.0

I have a website running under IIS which has an SSL certificate applied. We would like to enforce HTTPS usage for the website which is easily done by checking the "Require Secure Channel" box, but this will immediately break the ability for people…
kdmurray
  • 549
  • 3
  • 8
  • 19
4
votes
2 answers

IIS6 Wildcard Mapping to ASP.NET - no file extension results in IIS 404

I'm trying to perform what I understand to be a relatively simple task. I'd like to remove the extensions from the URLs on my website. I have the proper set up in my application to handle and rewrite the URLs - the trouble is I can't get past IIS to…
Ian Robinson
  • 65
  • 1
  • 2
  • 9