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

Http 400 'Bad Request' and win32status 1450 when larger messages are sended to a WCF service

we sometimes receive Http 400 bad request resultcodes when posting a large file (10mb) to a WCF service hosted in IIS 6. We can reproduce this using SOAP UI and it seems that it is unpredictable when this happens. In our WCF log the call is not…
Tim Mahy
0
votes
1 answer

Allow website access from specific subnet, otherwise ask for credentials

How can I configure IIS 6 to allow access to a sub folder from our intranet without any authentication (well, the IP address needs to be checked but that's already working) from the internet only after authentication via Basic Auth? Basically I'm…
joschi
  • 21,387
  • 3
  • 47
  • 50
0
votes
2 answers

Programmatically Upload Files from Client to IIS

How would I set up IIS to allow clients to programmatically upload files to a folder on the server?
yodie
  • 113
  • 3
0
votes
2 answers

FTP issues with Windows 2003 box and Filezilla

We've set up a Windows 2003 server with IIS 6 and the FTP is Filezilla. I'm not a sys admin by any means and neither is my other developer. I'm trying to connect to FTP on a Mac with a Cyberduck FTP client. I'm running OSX 10.6.3. The problem is…
vanhornRF
  • 103
  • 4
0
votes
2 answers

Django on Windows 2003 Slow Initially

I have setup Django to run on a windows 2003 server following the steps on the django wiki. Everything works fine and there are no errors. Only one instance of Django is setup on the server at the moment. However whenever the first page is requested…
John
  • 58
  • 1
  • 7
0
votes
2 answers

Point subdirectory to another domain is IIS 6

Is it possible to rewrite somehow www.mysite.com/Pictures to point to test.mysite.com/Pictures or even more broadly www.someothersite.com/Pictures ? Note: www.mysite.com and test.mysite.com are on separate machines and built with different…
Liviu
0
votes
1 answer

Difference between adding MIME types in IIS via Websites vs Local Computer?

What is the difference between adding MIME types in these 2 different situations? When in IIS 6 manager... Right click on the computer name (local computer) > properties > mime types Right click on the "Web sites" folder > properties > http headers…
Alex KeySmith
  • 721
  • 2
  • 10
  • 19
0
votes
1 answer

IIS 6 ASP.NET default handler-mappings and virtual directories

I'm having a problem with setting a default mapping in IIS 6. I want to secure *.HTML files with ASP.NET forms authentication. The problem seems to have something to do with using virtual directories to hold the html files. Here's how it's…
Mark Lauter
0
votes
3 answers

Load balance between two virtual directories on a single machine running IIS6

I'm trying to simulate a production environment using a single VM. The production environment will have 3 servers behind a load balancer with sticky sessions. Production will be using IIS6. For development, I have no need to distribute load, but…
Emil Lerch
  • 143
  • 1
  • 7
0
votes
1 answer

Get a list of files in an IIS6 website

Is there a way to get an exhaustive list of files in an IIS6 website?
Pete Montgomery
  • 154
  • 1
  • 5
0
votes
4 answers

Public/Private IP address

We have several websites (with several public IP addresses) running on a web server. In IIS, the IP address are internal IP addresses (192.168.xxx.xxx). How do I figure out which public IP address matches which internal IP address? My goal is to…
Charles
  • 483
  • 1
  • 6
  • 17
0
votes
2 answers

Increase simultaneous connection count for one user on IIS6

By default one user can open only one simultaneous connection on IIS6, how to increase this number? I do not find any option in IIS6 for this. Regards, Tomas
Tomas
  • 447
  • 3
  • 8
  • 17
0
votes
1 answer

Does PHP ala FCGI use the IIS-AppPool or the FCGI AppPool on IIS6

I've got an IIS6 (win2k3 server) setup using PHP via FCGI (microsofts install this time); and I know FCGI has its own Application pool of sorts; I was wondering therefore if this means that the PHP is isolated from the IIS AppPool?
Chris McKee
  • 3,489
  • 2
  • 20
  • 16
0
votes
1 answer

IIS 6.0 subdomains with host headers and non existent subdomains

We have a wildcard A-Record pointing to our IP and have a number of sites running on IIS 6 with host headers and have a a wildcard SSL certificate for the domain so that each site can run under SSL. For example: https://A.foo.com https:/B.foo.com…
Mustafakidd
0
votes
1 answer

Server with IIS and Apache - how to SSL encrypt Apache with IIS

I have a Windows Server 2003 box already setup and working with IIS 6. IIS is set to serve a site out over both HTTP and HTTPS connections using default ports. For various reasons I need to set Apache up on the same server and it needs to serve its…
GAThrawn
  • 2,434
  • 3
  • 20
  • 38