Hi

I've exposed a service using HttpInvoker and sucessfully invoked the a method remotely. Now, is there a way to get the callers IP address when a method is invoked ?

Code:
@Service("myService")
public class MyServiceImpl implements MyService {

  @Override
  public String myMethod(int param) {

    // GET IP ADDRESS HERE FROM SOMEWHERE

    return "Hello";

  }
}
Regards ABQ