Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a need to capture IP address of the client in my GWT/GAE (Java) application. Since GAE does not support full set of java.net APIs I cannot do code such as snippet below. Can anyone suggest reliable way of achieving the same?

for (final Enumeration<NetworkInterface> en = NetworkInterface.getNetworkInterfaces(); en.hasMoreElements();) {
    final NetworkInterface intf = en.nextElement();
    for (final Enumeration<InetAddress> enumIpAddr = intf.getInetAddresses(); enumIpAddr.hasMoreElements();) {
        final InetAddress ip = enumIpAddr.nextElement();
        if (!ip.isLoopbackAddress() && !ip.isLinkLocalAddress() && !ip.isAnyLocalAddress()) {
                return ip.getHostAddress().toString();
        }
    }
}

For Python version one can do:

os.environ['REMOTE_ADDR']

or

String ip = self.request.remote_addr;

But what would be a Java equivalent?

share|improve this question

2 Answers

up vote 12 down vote accepted

OK - got it. In your Servlet which should extend RemoteServiceServlet do this:

final String ip = getThreadLocalRequest().getRemoteAddr();
share|improve this answer

If you are behind a proxy, for example, if you use ProxyPass and ProxyPassReverse you could find useful this:

this.getThreadLocalRequest().getHeader("X-FORWARDED-FOR") 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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