vote up 3 vote down star
1

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

flag

74% accept rate

5 Answers

vote up 4 vote down check

HttpContext.Current.Request.UserHostAddress is what you want.

link|flag
vote up 2 vote down

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.

link|flag
vote up 1 vote down

Try:

Context.Request.UserHostAddress
link|flag
vote up 0 vote down

Try this:

string ipAddress = HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];

Haven't tried it in a webMethod, but I use it in standard HttpRequests

link|flag
vote up 0 vote down

The HttpContext is actually available inside the WebService base class, so just use Context.Request (or HttpContext.Current which also points to the current context) to get access to the members provided by the HttpRequest.

link|flag

Your Answer

Get an OpenID
or

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