Shouldn't that be httpReq.getRemoteAddr()? – Xavi LópezOct 16 '11 at 11:02
getRemoteAddr() will return the raw IP address, while getRemoteHost() will return the resolved address name if possible (or the IP if not). – tetsuoOct 16 '11 at 16:13
Subclass WebClientInfo to provide a public method that delegates on protected WebClientInfo.getRemoteAddr(). Then create a method to query this in a custom RequestCycle class. In Wicket 1.3-1.4 I've achieved this by subclassing RequestCycle, but with 1.5 it seems things are different: RequestCycle in Wicket 1.5
WebClientInfo has the advantage of querying the X-Forwarded-For erquest parameter, and will return the proper IP address if your server is behind a proxy/load balancer that uses XFF.