How Can I get client ip in an ejb interceptor? My application is based on javaee5 and is deployed on glassfish and it has different kind of clients (ejb/MDB/jax-ws webservices) and I have a default interceptor that is responsible to log client ip and etc. Can I use java.rmi.server.RemoteServer? I test it but I'm getting this error :

ServerNotActiveException: not in a remote call

Any Idea?

link|improve this question

0% accept rate
Not sure this is possible. I don't think the EJB container has access to even the HTTP request, so I believe it might be not possible to retrieve the client's IP address – Gonzalo Garcia Lasurtegui Oct 4 '11 at 19:57
Even if I use a soap handler and put a value into Message context and get it in the interceptor? Can I get the access to client IP in soap handler? – Afsaneh Oct 5 '11 at 12:45
If you are exposing your EJB as a web service -which is what I understand from your reply-, you can get the ip address in the service itself by injecting the @Resource WebServiceContext. This gives you access to the servlet request, which contains a getRemoteAddr() method, which returns the client ip address. No need to use a soap handler then. – Gonzalo Garcia Lasurtegui Oct 5 '11 at 14:39
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.