Fórum

Obtain external client IP from web service

thumbnail
Dimitrios Karageorgopoulos, modificado 11 Anos atrás.

Obtain external client IP from web service

New Member Postagens: 18 Data de Entrada: 01/06/12 Postagens Recentes
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 11 Anos atrás.

RE: Obtain external client IP from web service

Liferay Legend Postagens: 2416 Data de Entrada: 22/12/10 Postagens Recentes
The ServiceContext object has a getRemoteAddr() method on it as well. Can you use that one?
thumbnail
Dimitrios Karageorgopoulos, modificado 11 Anos atrás.

RE: Obtain external client IP from web service

New Member Postagens: 18 Data de Entrada: 01/06/12 Postagens Recentes
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 11 Anos atrás.

RE: Obtain external client IP from web service

New Member Postagens: 18 Data de Entrada: 01/06/12 Postagens Recentes
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 11 Anos atrás.

RE: Obtain external client IP from web service

New Member Postagens: 15 Data de Entrada: 18/06/12 Postagens Recentes
Hi Dimitrios,
have you found a solution for this issue?