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.
996 questions
7
votes
3 answers

Record load time of web pages

I have been asked to investigate a way of record how long it a full page request is on our website. i.e. how long it takes from when a user clicks on a link till the page has finished loading. Now I've had a look at Google Analytics and this appears…
Neil
  • 83
  • 5
7
votes
3 answers

pci compliance on IIS 6.0

I have a website that has just failed a PCI Compliance check - The report said that the site supported weak ciphers. I thought I'd already disabled that by turning off SSL 2.0 on the webservers. (It refuses to load a web page if I tell the browser…
Colin Mackay
  • 173
  • 7
6
votes
5 answers

How to Host Multiple Domains / Web Sites on one IIS6 Server

I currently have an IIS6 server that hosts one web site/domain. I am developing another web site (completely separate) that I want to host on this same server. Both domains were purchased from GoDaddy. I believe I will need a server-side ISAPI…
Josh Stodola
  • 289
  • 1
  • 4
  • 14
6
votes
1 answer

IIS 7.5 Missing Authorization Header

I have a website running an ISAPI filter providing SSO functionality, as well as anonymous & basic authentication. The ISAPI filter populates the "Authorization" header of each request with basic credentials e.g. basic base64EncodedString…
Chris Morgan
  • 161
  • 5
6
votes
3 answers

How to debug why w3wp.exe crashes randomly?

On the main production server, the IIS worker process crashes sometimes. From the event viewer I get the following information. Faulting application name: w3wp.exe, version: 7.5.7601.17514, time stamp: 0x4ce7a5f8 Faulting module name:…
shashi
  • 163
  • 1
  • 1
  • 5
6
votes
2 answers

Moving a site from IIs6 to IIS7.5

I need to move a site off of IIS6 (Win Server 2003) and onto IIS7.5 (Win Server 2008) as soon as possible. Preferably tomorrow. The site itself is a delightful mix of classic asp (vbscript) and one-off asp.net (C#) applications (each asp.net app is…
Sukotto
  • 161
  • 1
  • 5
6
votes
1 answer

Safari users receive a prompt to select certificate when accessing my website

I have an ASP website on IIS6 that is equipped with a SSL certificate from godaddy. The website requires secure channel (SSL) and is set to IGNORE client certificates. In ran the SSL checker and the result looked fine. The issue that I have is…
Datapimp23
  • 181
  • 1
  • 3
  • 21
6
votes
2 answers

What might cause a user to receive duplicate emails?

One of our customers is receiving duplicate emails from our application, even though as far as I can tell from the application and SMTP logs, we're only sending it out once. What are some of the ways that an email might be duplicated between sending…
Gavin
  • 165
  • 1
  • 2
  • 7
6
votes
2 answers

Opening certmgr.msc to display the Machine level certificates

I want to view the certificates installed at the machine level, if I open certmgr.msc. I am aware that we can open an mmc and app a snap in for certmgr. But I dont want to go that way. I am aware that we can use the certmgr.exe with the -s and -r…
gmaran23
  • 329
  • 2
  • 6
  • 13
6
votes
6 answers

IIS 6.0 vs IIS 7.0

My client has most of the applications in .NET, he is changing his hosting provider, now he is asking for advice whether he should use the Windows 2008 with IIS 7.0 or good old Windows 2003 with IIS 6.0 What advantage does 7.0 offer over 6.0?
6
votes
2 answers

Can an IIS worker process's Virtual Memory use exceed the Private Memory limit?

For example, if I configure the following limits for an Application Pool in the "Recycling" settings: Virtual Memory: 512Mb Private Memory: 128Mb - or "used memory" in IIS 6 parlance Can the process use, say, 90Mb of physical memory but have…
Kev
  • 7,777
  • 17
  • 78
  • 108
6
votes
2 answers

HTTP compression in IIS 6.0 causing problems with certain users

We're getting a few sporadic customer calls (less than 0.1% of our users) complaining of not being able to access my company's website - either they get a blank page (if they use IE), or a "Content Encoding Error" that says the page uses an invalid…
gharper
  • 5,365
  • 4
  • 28
  • 34
5
votes
10 answers

IIS6: How to troubleshoot a 404 error in an ASP.NET application?

I have an ASP.NET application on a Windows Server 2003/IIS6 that refuses to run for some reason (it's the Xerox Centre, if that info helps). It has been working flawlessly before though on this server. Now, all I get if I try to open the app…
Tomalak
  • 1,605
  • 4
  • 17
  • 32
5
votes
5 answers

Peer's Certificate has been revoked

I just upgraded our web server with a renewed cert as our current cert expires later this week. When I browse to our site via FF it is throwing this error: Secure Connection Failed An error occurred during a connection to www.rivworks.com. Peer's…
Keith Barrows
  • 309
  • 1
  • 3
  • 15
5
votes
2 answers

What is the max number of websites / virtual directories one can host on IIS?

Can someone tell me the maximum number of websites / virtual directories I can host on a single IIS? Is there's a difference between IIS 6 and IIS 7? Also what performance and connection limitation should I be worry about.
Vadim
  • 153
  • 1
  • 1
  • 5
1
2
3
66 67