How do I get the caller's IP address in a WebMethod?
[WebMethod]
public void Foo()
{
// HttpRequest... ? - Not giving me any options through intellisense...
}
using C# and ASP.NET
|
1
|
How do I get the caller's IP address in a WebMethod?
using C# and ASP.NET
|
||
|
|
|
|
HttpContext.Current.Request.UserHostAddress is what you want. |
||
|
|
|
|
Just a caution. IP addresses can't be used to uniquely identify clients. NAT Firewalls and corporate proxies are everywhere, and hide many users behind a single IP. |
||
|
|
|
|
Try:
|
||
|
|
|
|
Try this:
Haven't tried it in a webMethod, but I use it in standard HttpRequests |
||
|
|
|
|
The HttpContext is actually available inside the |
||
|
|