Configuring ASP Web Applications in Windows Server 2008 R2 and IIS 7.5
| how-to | home |
Windows Servers 2008 and 2008 R2 Support Side-by-Side for ASP Applications
Internet Information Server 6 introduced support for
isolating ASP web applications. IIS versions 7 and 7.5 in Server 2008 and
2008 R2 keep this support although terminology changed slightly and the
configuration steps differ. Windows 7 has the same functionality as 2008 R2 and
the procedures outlined here also apply to Windows 7.
To isolate an ASP application on IIS 7 or IIS 7.5:
- Make sure that the ASP role service is installed.
- Create a directory for your web application. Create the IIS application.
- If your components are 32-bit, make sure that the application pool you
assigned to your application is configured to support 32-bit applications.
- Create a private or shared assembly (or assemblies) with the components you need to use.
- Install these assemblies on the web server; copy to a subdirectory of the application directory if private, install with MSI if shared.
- Create a private assembly with short name, no spaces or special characters (IServiceSxsConfig idiosyncrasy.)
Reference your assembly or assemblies in this meta-assembly.
- Copy this meta-assembly to the application directory on the server.
- In the IIS manager open ASP properties (double-click the ASP icon). Expand
Com Plus Properties.
- Set Enable Side by Side Component to True. Type your
manifest file name with no path in the Side by Side Component
field.
- Apply your changes (clicp Apply in the right pane).
The Examples\iis6 folder contains a complete working example with screen shots of the web server configuration
in both IIS6 and IIS7.
Click here to see an illustration of the example configuration
on IIS 7.5.
Read more: