Internet Information Services

Internet Information Services

Internet Information Services

1. Pre-requisites

1.1. Internet Information Services (IIS)

2. Installing the pre-requisites on your Windows Server

When you install Windows Server 2008 it usually does NOT install IIS and web server support. To install all web server support, go to Control Panel -> Administrative Tools -> Server Manager:

Select Roles and then Add Role Services:

 

Select Web Server (IIS) Support:

 

A new window will open asking you to add additional role services required for Web Server support. Choose Add Required Role Services:

Click on Next button:

Click on Next button again:

Select all the services you want to install. Please note that you MUST check ISAPI Extensions. It is also a good idea to install ISAPI Filters, CGI and ASP.NET, unless you are sure that you won’t install any other web application in this server.

Windows is now ready to install all required services. Click on Install button and wait until it finishes.

Windows will then show the installation report:

Now, you have a new application under Administrative Tools, named Internet Information Services (IIS) Manager:

2. Creating an Application Pool for your ISAPI Application

Once you have all the pre-requisites installed, it is time to install the ISAPI application. We start creating a new application pool for the ISAPI application. It is a good idea to create one application pool per application. Doing this, you can stop/update/start an ISAPI application without interfering with other installed applications.

Below the tree root, select Application Pools and then Add Application Pool:

Give a name for your application pool (in our case ISAPI App Pool), select No Managed Code and click on OK button:

Now let’s configure its advanced settings. Right click on the new application pool and choose Advanced Settings:

In order to support 32-bit application on 64-bit Windows you must set Enable 32-bit Applications to True. Also, select the Identity of your application pool and set it to a custom account. Personally, I always create a new user for the application pool and give it all the required priviledges. If your your application requires access to other protected network resources (like other application servers, database servers, etc.) you should consider using a domain user with all the necessary priviledges. If you have full control over this web server, it is easier if you add the user to the Local Administrators group. This way, security restrictions won’t affect the process. Once the application is running, you can remove the user from Local Administrators group and give it only the requires permissions.

 

3. Creating a new application in IIS

Now that we have a new application pool for our new ISAPI application, is time to create the application under IIS. Right click the Default Web Site (you may also create it under a differente web site) and choose Add Application:

Select the application pool that you created on step 2 and the physical path, where your ISAPI DLL will be installed. Also, click on “Connect as…” button and set a specific user for the application. Again, personally, I always set the same user created for the application pool, because I want all the settings to be explicit.

Once the user is set, click no the button “Test Settings…”. It must succeed. If not, check the NTFS permissions of the user on the physical path selected.

 

 

4. Enabling ISAPI Modules in IIS

Even though you installed ISAPI support, it is disabled by default. You have to enable ISAPI on IIS before testing your application.

Select your newly created application and then double-click on the “Handler Mappings” icon:

Note that CGI-exe and ISAPI-dll are disabled. To enable them, click on the link “Edit Feature Permissions…”:

 

Check the “Execute” check box and click on OK button:

A final step to enable ISAPI on this web server is remove the ISAPI and CGI restrictions. Select the root node and double-click on the “ISAPI and CGI Restrictions” icon:

 

Click on the link “Edit Feature Settings…”:

Mark both check boxes and click on OK button:

 

5. Basic test

This basic test is not required, but it’s better test the setup of your web application with a simple HTML file before trying to deploy your real application. Don’t expect your ISAPI application to work properly if IIS can’t serve a simple HTML file.

Create a simple HTML file (see the example) using notepad and save it in your application folder.

<!DOCTYPE html>
<head>
<title>Test page</title>
</head>
<body>
This is a test page
</body>
</html>

Inside IIS Manager, switch to “Content View”, right-click your test.html file and select “Browser”. This basic test must be successful. If not, check the user credentials in NTFS and also if WWW service is running.

 

5. Testing your ISAPI application

Copy all file required by your ISAPI application to the application folder. Remember to copy wwwroot folder and its files to the server. Also check the section 6 of this document about web.config changes required for your ISAPI application.

Once the ISAPI files are in place, repeat the test but now using your ISAPI DLL.

 

6. Configuring your application to show timeout errors in Windows 2008 Server

When you delopy our ISAPI applicaiton in a Windows 2008 Server and a time-out error occurs, you will probably get an error page like this:

500 – Internal server error.
There is a problem with the resource you are looking for, and it cannot be displayed.

This happens because, in Windows 2008 Server, IIS replaces any content with HTTP status code bigger than 400 with its own content (a useless error message, by the way). When the timeout error occurs, IntraWeb answers with an error code 500. There is no easy – if any – way to programmatically change this behavior from within an ISAPI extension. You need to create (or edit) a web.config file for your application, like this:

<?xml version=”1.0″ encoding=”UTF-8″?>
<configuration>
<system.webServer>
<handlers accessPolicy=”Read, Execute, Script” />
<httpErrors existingResponse=”PassThrough” />
</system.webServer>
</configuration>

Then save this file in the same folder where your ISAPI DLL is located and you are done.

You can read more information about this setting here: http://blogs.iis.net/ksingla/archive/2008/02/18/what-to-expect-from-iis7-custom-error-module.aspx