J
Jordan
I have an Exchange 2003 server running OWA access with a simple script that
redirects a user coming in on port 80 to the https:// channel. This has been
working fine for the past 6 months and continues to work fine for all 9x,
2000, and XP clients except for XP SP2.
I just updated my personal Windows XP Pro computer to SP2 and now I can no
longer access my secure OWA even when I type https:// for the site. Here is
my owahttps.asp script that I got right off of the MS Knowledge base:
<%
If Request.ServerVariables("SERVER_PORT")=80 Then
Dim strSecureURL
strSecureURL = "https://www.mydomain.com/exchange"
Response.Redirect strSecureURL
End If
%>
I go to other sites like my online bank that redirects me from http to https
sites without any problem. Any ideas why I can't do this with Exchange OWA?
redirects a user coming in on port 80 to the https:// channel. This has been
working fine for the past 6 months and continues to work fine for all 9x,
2000, and XP clients except for XP SP2.
I just updated my personal Windows XP Pro computer to SP2 and now I can no
longer access my secure OWA even when I type https:// for the site. Here is
my owahttps.asp script that I got right off of the MS Knowledge base:
<%
If Request.ServerVariables("SERVER_PORT")=80 Then
Dim strSecureURL
strSecureURL = "https://www.mydomain.com/exchange"
Response.Redirect strSecureURL
End If
%>
I go to other sites like my online bank that redirects me from http to https
sites without any problem. Any ideas why I can't do this with Exchange OWA?