HTMLA with SSL Incorrectly Warns of a Non-Secure Connection (289794)
The information in this article applies to:
- Microsoft Internet Information Services 5.0
This article was previously published under Q289794 SYMPTOMS
When you use the HTML Administration Web Site through a Secure Sockets Layer (SSL) connection, the following error message occurs:
Warning! You are not using a secure connection for your Web-based administration. For more information, see Secure Sockets Layer in the Internet Information Services online documentation.
CAUSE
The Java script that parses the URL to find and identify an SSL connection is passed the incorrect parameters.
RESOLUTION
Edit the Default.asp page in the C:\WINNT\System32\Inetsrv\Iisadmin directory. Find the following line of code:
if (curURL.substring(0,4) != "HTTPS")
and change it to:
if (curURL.substring(0,5) != "HTTPS")
Modification Type: | Minor | Last Reviewed: | 7/15/2004 |
---|
Keywords: | kbpending kbprb KB289794 |
---|
|