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
2
votes
1 answer

IIS 6.0 on Windows Server 2003: HTTP 404 error on Virtual directory; system cannot find the file specified (win32 status code 2)

Very strange problem. I am running Windows Server 2003, with IIS 6.0. In one of the websites, there are three virtual directories: A, B, and C. For whatever reason, and, from my understanding, nobody touched the box, A and C are having a major…
2
votes
3 answers

Assign more memory to w3wp worker processes

My workers processes cap out at 70mB. How do I raise this limit? I have 4Gb on Windows 2003 IIS6. Thanks!
2
votes
1 answer

Why does IIS use the IUSR_Machine account to load aspnet_isapi.dll when it should use application pool account?

I was recently tasked with fixing a Windows Server 2003 server running IIS 6.0 that was giving: HTTP Error 401.3 - Unauthorized: Access is denied due to an ACL set on the requested resource. It started giving these responses after windows update…
James
  • 131
  • 4
2
votes
2 answers

Updating JRun for ColdFusion MX7 running on IIS

Old, I know, but that's what I'm working with. I need to update to JRun update 6 (or 7) but the Adobe site only has a .exe installer. That installer wants to update C:\JRun4\. That folder doesn't exist, and my JRun.exe is in…
Kendrick
  • 121
  • 3
2
votes
2 answers

Should iis and .net be of the same Architectures when installed?

We currently have a 64bit Windows Server 2003 running an instance of IIS 6 which was configured to run in 32bit mode. If we install the .NET framework 4.0, should the framework be installed as 32bit or as 64bit? Note, this is a production web…
Chris
  • 800
  • 1
  • 7
  • 10
2
votes
1 answer

IIS 6.0 / 2003 giving 404 error after period of time

I have a local development server running Windows Server 2003 that hosts a few applications running on IIS 6.0. I can connect to these said applications just fine but after an unknown period of time they are unreachable, giving me 404 errors. I'm…
Bryan Roth
  • 181
  • 2
  • 4
  • 15
2
votes
1 answer

setting up subdomain in IIS/DNS - possible incorrect subdomain structure

I am trying to create a subdomain in DNS, however it doesn't appear to be working. I am getting the standard Unable to determine IP address from host name for aa.00.website.com The domain name does not exist. (the above is an indication of the…
kolin
  • 123
  • 6
2
votes
2 answers

Upgrade to IIS7 from IIS6 to improve application performance

I have an ASP Classic application that runs currently in IIS6, but often due to the original programmer not following "best practices" this application throws an Out of Memory error after several hours. Originally, I had asked this question on…
RogueSpear00
  • 162
  • 1
  • 1
  • 9
2
votes
2 answers

How Do I Migrate a Single Application from IIS6 to IIS7?

I have a number of applications currently running on a Windows Server 2003 system. We'd like to migrate one of those applications to IIS7 on a Windows Server 2008 R2 box. This is a new web server, has IIS installed, but nothing else. I know how to…
John Saunders
  • 425
  • 7
  • 22
2
votes
2 answers

Mime types get removed by iisreset

I am trying to deploy a Silverlight app to iis on a Win 2003 server. I add the mime type for silverlight to iis ( .xap, application/x-silverlight-app ) and then restart the app pool, and the app downoads and runs. However, running an iisreset or…
Roger Guess
  • 273
  • 1
  • 5
  • 11
2
votes
1 answer

How to set IP Filtering under IIS6

we have a particular application under a virtual directory that is used for administatrive purposes. In order to protect the application, we have IP filtering enabled where we specify a list of allowed IPs that can connect. Manually setting this up…
user500741
  • 123
  • 4
2
votes
1 answer

In need of entry for BROWSCAP.INI that helps detect IE 9

An application under IIS6 on a Win 2003 server uses BROWSCAP.INI to detect browser and version, but it hasn't yet been updated to detect IE 9, so the code checking for browser and vesion can't find anything and presents an error message to the user…
Cyberherbalist
  • 337
  • 1
  • 4
  • 14
2
votes
1 answer

How to configure basic authentication in IIS SMTP Server?

I feel like this is a stupid question but: I have a test environment set up where I need to enable SMTP basic authentication with IIS. I have a Win2k3 r2 server as a DC in its own windows domain called testdom.local. I also have the MS pop3 server…
simon
  • 714
  • 1
  • 7
  • 21
2
votes
1 answer

How to host two web sites on one IP? IIS

I'm a developer, and since I'm not that skilled with server stuff, I wanted to ask, is it possible to have multiple web sites on one IP? Say: foo.com -> 111.222.333.444 bar.com -> 111.222.333.444 The sites are different foo.com != bar.com Platform…
Coder
  • 367
  • 1
  • 2
  • 9
2
votes
1 answer

Migrating to IIS 7 from IIS 6

I am planning to migrate our windows 2003 server (with IIS 6) to windows 2008 (with IIS7). I have found that with this msdeploy migration tool. With this tool can export my websites package on to newer machine, but the problem is I have hundreds of…
Akshay
  • 121
  • 1