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
5 answers

What defines IIS IP Address for WebSites

Hey guys, I know this is a noob question, but I'm having trouble finding a simple, clear answer: In a default install of MS Server 2003, what defines how many IP address you have available for websites? For example, in my install, when I go to…
andy
  • 217
  • 1
  • 5
  • 11
3
votes
1 answer

Interesting IIS weird 404 for files that exist, but only for a specific host header

So, I have a site with 2 host headers: header1.example.com header2.example.com In this site, I have a virtual directory called Foo and it has various sub-directories 1, 2, 3 & 4 that have various style sheets. A page references these style sheets…
Adam
  • 205
  • 4
  • 14
3
votes
1 answer

Is there a way to list all domain names for IIS setup?

I have a Windows 2003 IIS6 setup. I would like to get an extract (system output) of all the header dns entries (virtual hosts etc). As I need to move my server and just updated the IPs (I don't have direct access to my DNS server as it is managed by…
Jakub
  • 380
  • 1
  • 11
3
votes
1 answer

In IIS, Is it possible to execute a .HTML page as aspx?

Question: We have a 3rd party portal that makes a copy of a html/aspx page, and puts it into a temporary folder, CHANGING THE EXTENSION to .HTML in all cases (also it the root page was .aspx). Unfortunately, that means it does not execute the…
Quandary
  • 1,024
  • 4
  • 19
  • 36
3
votes
1 answer

IIS 6 "Dead" app pools can't be stopped or recycled

On a production machine that I manage, the app pools periodically die. After they die, it seems impossible to stop or reset them without issuing an iisreset. In this case, I use the word "die" to mean that the sites hosted by the app pool no longer…
Eric
  • 151
  • 5
3
votes
4 answers

Randomly unable to connect to localhost web server

We've got a very strange issue that cropped up a few weeks ago and have been unable to resolve. We are running a couple of web sites in IIS (port 80,443) and in Apache (8080,8090) all on the same Windows Server 2003 SP2 machine. We've been running…
Lloyd Cotten
  • 53
  • 1
  • 2
  • 10
3
votes
2 answers

Setup IIS to prompt for username/password Window instead of using a form?

On a linux box using .htaccess you can deny access to folders etc... and when the user attemps to visit that directory/file, a window pops up asking for username/password. How would you do this on iIS 6?
Jack Marchetti
  • 561
  • 1
  • 6
  • 15
3
votes
4 answers

Getting HTTP Compression (GZip) to work with URL Routing on IIS 6

I haven't seen any questions specifically addressing this specific issue. When URL Routing is used, The Request goes into IIS and then is routed to the Aspx Page. For example, a site: www.site.com/products may route the request to…
Armstrongest
  • 189
  • 1
  • 4
  • 9
3
votes
1 answer

Adding a new IIS Mime Type without doing an IIS Reset?

I have to add a new mime type to an IIS 6.0 web server. The client would like this done ASAP as it currently isn't serving .flv files. However, the server is used for other clients and I would like to avoid doing an IIS Reset during working…
Robin Day
  • 506
  • 1
  • 8
  • 19
3
votes
1 answer

Issues disabling SSL 2.0 in IIS 6

I have reviewed both related posts on this site: How do I disable SSL 2.0 support on IIS? How to disable SSL 2.0 on IIS 7.5? The issue I am having is that I have implemented the registry change, rescanned my websites, and I am still being told that…
I.T. Support
  • 601
  • 2
  • 11
  • 27
3
votes
1 answer

GetFileSize method fails on file of exactly 146170227 bytes

Yeah, this is a weird one. When attempting to get the file size of a file on an FTP server in Windows Server 2003(SP1 and 2), the action will fail if the file size is EXACTLY 146170227 bytes. Seriously. One byte more or less and it works. More…
Faqa
  • 131
  • 1
3
votes
2 answers

How do you access your website by IP address if you're using host headers in IIS 6?

I'm using host headers in IIS 6 to host multiple websites for the same IP address. Currently I have a need to access one of the websites by IP address rather than URL. Any idea how to do this? I could take advantage of DNS Rewrite on my firewall…
GregD
  • 8,713
  • 1
  • 24
  • 36
3
votes
4 answers

Installing a font on a web server for ASP.NET application

I've just deployed an ASP.NET application onto a Windows 2003 web server. The application contains Crystal Reports. Some of the reports contain characters in WingDings2 font. When the report is generated those characters show in the standard font…
Mike Cole
  • 203
  • 2
  • 5
  • 15
3
votes
2 answers

My IIS server won't serve SSL sites to some browsers

I've got an IIS 6.0 server that won't serve pages over SSL to some browsers. In Webkit-based browsers on OS X 10.6, I can't load pages at all. In MSIE 8 on Windows XP SP3, I can load pages, but it will sometimes hang downloading images or sending…
sbleon
  • 193
  • 9
3
votes
2 answers

How do we track web traffic on a Windows 2003 Server running IIS?

Our management would like to know how people are using our website, which we host on our Windows 2003 Server using IIS. Since none of us are really system administrators, we don't know how to go about getting the information out of wherever IIS, or…
Rod
  • 555
  • 3
  • 10
  • 20