SYMPTOM:
Oftentimes users may encounter small errors and exceptions when initially setting up Strategy Web 9.x environments when running with Internet Information Services. One very useful test to help troubleshoot environment issues is to determine if Internet Information Services is able to serve ASP and HTML pages in the installed configuration. If it is unable to serve ASP and HTML pages, the issue most likely does not sit with the Strategy application, but most likely has to do with the IIS configuration.
ACTION:
Use the following steps to test whether IIS is able to serve ASP and HTML pages:
For ASP:
<html> <body bgcolor="yellow"> <center> <h2>Hello World</h2> <p><%Response.Write(Now())%></p> <p>1 + 2 = <%= (1+2).ToString() %></p> </center> </body> </html>
For HTML:
<HTML> <TITLE>HTML Test Page</TITLE> If you see "Hello World" below, then HTML pages are serving properly. <STRONG>Hello World</STRONG> </HTML>
Test the connectivity through IIS:
If the 'Hello World' message is seen from testing the two files, IIS is correctly serving ASP and HTML pages, and issues may reside with the installation of the Strategy application or with the configuration of the Strategy virtual directory within IIS.
Using these files for testing can be taken a step further to test the ability to serve ASP and HTML pages from the Strategy install on the Web Server machine.
Use the following steps to test the ability to serve ASP and HTML pages from the Strategy virtual directory:
If the 'Hello World' message is seen from testing the two files, the Strategy Virtual Directory is configured correctly. If issues are still seen when trying to access Strategy Web, there may be issues with the content of the virtual directory such as permissions.
More information regarding the testing of HTML and ASP pages can be found in the Microsoft technical note found at http://support.microsoft.com/kb/q279729.