1. In my Dev Machine HttpContext.Current.Request.UserHostAddress is null. Why? how can I turn it on?
  2. How can I get list of Ips in case of a proxy client?

WCF Service with ASP.net 4 window7.

Thanks

link|improve this question

I never get an empty/null, but Cassini returns a "::1" now for whatever reason. – Doozer Blake Oct 6 '11 at 15:18
feedback

1 Answer

up vote 1 down vote accepted

to avoid this problem you can parse the HTTP_X_FORWARDED_FOR for the last entery IP.

ip=Request.ServerVariables("HTTP_X_FORWARDED_FOR") ;
if (!string.IsNullOrEmpty(ip))
{
   string[] ipRange = ip.Split(',');
   int le = ipRange.Length - 1;
   string trueIP = ipRange[le];
}
else
{
   ip=Request.ServerVariables("REMOTE_ADDR");
}

Hope this will helps you

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.