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

I'm using wicket 1.5.1, couldn't figure this out.

public class MyPage extends WebPage {

public MyPage() {

    String clientAddress = ...?
share|improve this question

2 Answers

    WebRequest req = (WebRequest) RequestCycle.get().getRequest();
    HttpServletRequest httpReq = (HttpServletRequest) req.getContainerRequest();
    String clientAddress = httpReq.getRemoteHost();
share|improve this answer
1  
Shouldn't that be httpReq.getRemoteAddr()? – Xavi López Oct 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). – tetsuo Oct 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.

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.