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
3
votes
2 answers

Error in W3SVC counters - how to fix?

beginning to encounter this error: "It has taken too long to refresh the W3SVC counters, the stale counters are being used instead." on our IIS6/Win2k3 boxes circumstantially whenever the HTTP requests get in the region of 500p/sec. Doesn't crash…
annakata
  • 131
  • 1
  • 1
  • 4
3
votes
3 answers

Multiple domain names for IIS websites with SSL

First off, this isn't a question about sub-domains or host headers and SSL. What I want to know is can I build a certificate request or find a certificate provider that will issue a certificate with multiple CNs (Common Names) such that secure…
Clint Miller
  • 1,141
  • 1
  • 11
  • 19
3
votes
2 answers

Newly added IP addresses not selectable for IIS bindings

A colleague of mine added several IP addresses to a server, but these IPs are not appearing in the list to use with bindings. This goes for IIS7 web sites and IIS6 FTP sites. We found this KB article, but I don't have the offending patch installed:…
neildeadman
  • 684
  • 4
  • 20
  • 34
3
votes
1 answer

Avoiding 401 response for each request using NTLM

We have here an ASP.NET 3.5 application using NTLM based Windows authentication. The system runs on a private network that is actually distributed over different geographic places (connected via VPN). We are now trying to optimize the website's…
Satumba
  • 143
  • 1
  • 5
3
votes
1 answer

IIS 6 Denies access to the default document

I've got Windows Server 2k3 with IIS6 hosting a couple ASP.NET MVC 2 applications (.NET 4), all in the Default Web Site. Most of them simply use Integrated authentication, but a couple use forms as well. All the applications work properly and are…
yoozer8
  • 322
  • 2
  • 12
3
votes
2 answers

How can I track down the cause of a 400: Bad Request web service call to localhost?

This is on Windows Server 2003 Running IIS. I have an ASP.NET 2.0 website which is also hosting some web services. When the site makes a webservice call to itself (localhost), I get back a 404: Bad Request. I would like to see the actual request…
MStodd
  • 171
  • 1
  • 8
3
votes
1 answer

how to find out why our Windows 2003 webserver shows CPU use at 100%

I am responsible for coding our web and database applications and the smooth functioning of the web server, which is running IIS6 under Windows Server 2003. The machine's a legacy server, 2003 vintage. For some reason the performance tab in Task…
Tim
  • 203
  • 1
  • 4
  • 11
3
votes
1 answer

Local path in iis greyed out

I am trying to deploy an application to my website, but the Local Path in IIS Manager is greyed out. Why is this occurring?
cdub
  • 189
  • 2
  • 12
3
votes
2 answers

IIS/SMTP - unable to move emails from inetpub/mailroot/Queue due to file lock

I have a listener that processes emails in the inetpub/mailroot/Queue directory. Once the listener is done processing an email it proceeds to move the email to another directory. However, moving the email is not possible due to a file lock by the…
Bryan Roth
  • 181
  • 2
  • 4
  • 15
3
votes
1 answer

SMTP server not sending out any emails

I've installed SMTP service on Windows Server 2008. I'm attempting to send emails, however none get delivered. I've scoured logs for a long time, and have solved a few errors. Currently all emails dropped in the pickup folder are being sent to the…
Tom Gullen
  • 385
  • 4
  • 8
  • 24
3
votes
1 answer

How can I verify a client's identity using an SSL handshake to allow access to certain website pages?

I'm a programmer in the process of writing Web Services on a website for a specific client. These Web Service can only be accessed by this one client. They intend to send a client certificate over SSL with each request, and I need to verify the…
Eric Belair
  • 301
  • 2
  • 12
3
votes
4 answers

Multiple php-cgi.exe processes on IIS

The production server runs a PHP application on IIS 6.0. During the peak hours we have had a few issues where the php-cgi.exe processes increase in numbers and approach around 200. The server comes to a crawl and we have to restart the server a…
HYP
3
votes
1 answer

site-to-site transfer (FXP) error

I'm enabled site to site transfer in IIS6 like this: http://support.microsoft.com/kb/247132 but i receive this error in cuteftp program: STATUS:> [2011-10-15 11:45:24 PM] Site-to-site configuration #2: source - PORT, destination - PASV. COMMAND:>…
mehman
  • 55
  • 3
3
votes
4 answers

Ionic Isapi Rewrite error on IIS6, Windows 2003 Server

First of all my setup is a VPS running Windows 2003 Server with multiple domains on it IIS 6, Plesk IsapiRewrite4.ini RewriteLogLevel 3 RewriteCond %{HTTP_HOST} ^mydomain.com$ RewriteRule ^/(.*)$ http://www.mydomain.com/$1 [R] This is one…
EsiX
  • 69
  • 1
  • 8
3
votes
2 answers

Application Pool Identity corruption

I have observed a few times while deploying software into IIS that every now and again the related Application Pools fail to restart and in the Event Log we see an error like the following: The identity of application pool, 'AppPoolName' is…
Gavin Osborn
  • 161
  • 1
  • 4