For local development purpose, I ran following script on VISTA, IIS 7:
<%
for each x in Request.ServerVariables
response.write("<b>" & x & ":</b> " & Request.ServerVariables(x) & "<br><BR>")
next
%>
It does not show me IP of client, Request.ServerVariables("remote_host") and
(Request.ServerVariables("remote_addr").
on my vista I had IPv 6 and IPv4 both enabled. i dropped IPv6 protocole and now Request.ServerVariables("remote_host") is showing ::1 value earlier it was showing "A6073E5A-D779-472A-8430-9B03999E4121" AS IP
Also I noticed that all values assigned to session and application variables defined in global.asa are not available in other pages of my website means session and application variables are not maintaining. It seems that whole server side variables are not working that were initialized with appliction_OnStart, session_OnStart. Wherein whole ASP siter with no change in code is working fine with IIS 6 (xp/win2k3). But this issues comes within IIS 7. Please help how this can be fixed ?
Shamshad Ali