Foros de discusión

Obtain external client IP from web service

thumbnail
Dimitrios Karageorgopoulos, modificado hace 11 años.

Obtain external client IP from web service

New Member Mensajes: 18 Fecha de incorporación: 1/06/12 Mensajes recientes
Dear all,

I have implemented a web service using Service Builder in Liferay 6.0.

I want to obtain the extrnal client's IP addressin my *ServiceImpl class where the implementation of my web service methods reside.

I've seen that PortalUtil has a getHttpServletRequest that can lead to a getRemoteAddr funtion but getHttpServletRequest requires a PorletRequest object as input parameter that I do not know how I can get it from
thumbnail
Andew Jardine, modificado hace 11 años.

RE: Obtain external client IP from web service

Liferay Legend Mensajes: 2416 Fecha de incorporación: 22/12/10 Mensajes recientes
The ServiceContext object has a getRemoteAddr() method on it as well. Can you use that one?
thumbnail
Dimitrios Karageorgopoulos, modificado hace 11 años.

RE: Obtain external client IP from web service

New Member Mensajes: 18 Fecha de incorporación: 1/06/12 Mensajes recientes
Hi Andrew,

do you know how I can get a reference to the ServiceContext from my *ServiceImpl.java where my web services reside?
thumbnail
Dimitrios Karageorgopoulos, modificado hace 11 años.

RE: Obtain external client IP from web service

New Member Mensajes: 18 Fecha de incorporación: 1/06/12 Mensajes recientes
I tried a com.liferay.util.axis.ServletUtil which has a getRequest that returns an HttpServletRequest that has a getRemoteAddr() but did not work .
I got a org.apache.catalina.loader.WebappClassLoader.loadClass exception for com.liferay.util.axis.ServletUtil
Giuseppe Pantaleo, modificado hace 11 años.

RE: Obtain external client IP from web service

New Member Mensajes: 15 Fecha de incorporación: 18/06/12 Mensajes recientes
Hi Dimitrios,
have you found a solution for this issue?