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

Move website by switching drive letters

I want to move all website data from one drive to another as the storage is almost full. As I also want to keep the drive letter to the website drive I thought of switching the drive letters in windows to move to the new drive. Here is what I…
kcode
  • 1,825
  • 4
  • 19
  • 21
0
votes
1 answer

caching images in iis6

i try to make the images in my website read from the cache i try adding http heading like this but i still get in Yshow that it isn't caching. how can i check if a specific image has expire header?
user48228
  • 101
  • 1
0
votes
1 answer

How do I get IIS6 to default new websites to ASP.NET version 2 instead of version 1?

Whenever I create a new website on our W2K3 box, the ASP.NET tab defaults to version 1.1.4322. Changing it by hand results in IIS restarting. I'd like to have the tab default to ASP.NET version 2.0.50727 when creating a new website (hoping to avoid…
William Jens
  • 191
  • 9
0
votes
1 answer

Trac site usage in intranet

I need to track the usage on the intranet. I would like to be able to see how many times every file in the intranet are accessed. I have been looking into using a tool that parses the access logs but it does not seem possible see how many times…
user17562
  • 147
  • 4
0
votes
1 answer

File download speed windows server 2003 over long distance

The company I'm working for currently has a server situated in Hong Kong, serving content to mobile phone user OTA via their operator's APN, mainly to operators from the south east asia region. We adopted the OMA OTA provisioning approach such that…
codemonkie
  • 117
  • 1
  • 5
0
votes
2 answers

What Windows user does an anonymous asp.net website run as in IIS 6?

I have 2 web servers load-balanced, trying to access images from a 3rd server using pass-through authentication. The servers are in a workgroup as my host does not support domains. No matter what file/IIS permissions I set, the web servers can't get…
0
votes
1 answer

An IIS web site uses the "default document" list from another web site

We have an IIS 6 on Windows 2008. We have multiple web sites on this server. Two of those sites have the same physical path. - One should have the Default.aspx page as default document ; - The other one should have index_syfab.asp as default…
0
votes
2 answers

One SSL cert two IIS6 web sites one domain

We have our main web site set up in IIS6 with an ssl cert for our domain "adomain.com". We have another web site that we need to place on the same server which will be accessible via "adomain.com/newsite" each site has its own ip address. We want to…
skyfoot
  • 103
  • 4
0
votes
2 answers

FTP transfer hangs for random files

I've been stuck on this FTP issue for a while now. I have IIS 7 setup with an IIS 6 FTP server running on a Windows Server 2008 box. The problem I am running into is that I can't download certain files from the FTP server, even though I uploaded…
Dan Polites
  • 151
  • 1
  • 1
  • 4
0
votes
1 answer

IIS 6.0 Memory allocation

I need to find out how much memory does my .net application occupies in IIS 6.0. Can anyone tell me the steps to find out how much memory does my applicaion occupy in 6.0. thanks in advance. With regards, ram
user49552
0
votes
1 answer

IIS 7.5 running Classic ASP connecting to UNC path problem

Moving from Windows Server 2003 to Windows Server 2008 R2. We have a classic ASP site that connect to a remote UNC '\10.1.40.7\' path. When I run PROCMON on the web server, it says ACCESS DENIED....Impersonating: NT AUTHORITY\IUSR. On the 10.1.40.7…
0
votes
2 answers

IIS 6 404 error calling on localhost

I'm kinda desperate here I have a Windows 2003 Server and when I try to call http://localhost I get a 404 error I have localhost configured to c:\inetpub\wwwroot\ and whatever file I create there it always shows a 404 This is what I see on the log…
Paleta
  • 101
  • 1
0
votes
1 answer

IIS 6 redirects my site to another site in IIS when I assign an IP address to it

I'm having a bit of difficulty with IIS 6. IIS has about 10 or so different websites running on the server I've been given access to and the host have provided me with a new "external" IP and new "internal" IP. I've set DNS to point to the external…
0
votes
1 answer

Need help getting StateServer to work, trying to decipher WireShark to figure out why

I'm using WireShark to try to figure out why I can't get my ASP.NET application (which is deployed to IIS6) to use a remote ASP.NET StateServer. For the record, StateServer works if my application is deployed to the same machine as the…
DaveDev
  • 111
  • 3
0
votes
1 answer

Force http1.0 in IIS6

I've recently read in Steve Sounders book "Even Faster Web Sites" that we can increase the number of objects that older browsers like IE6 and 7 to download more than 2 objects at a time from a site by downgrading to http/1.0. Because this is only…
Jody Gilbert