175176177178179180181
public IPLocation getIpLocation() { if (null != _request) { return _request.getIpLocation(); } return new IPLocation(""); }
149150151152153154155156
final String remoteAddress = this.getRemoteAddress(); try { return IPLocator.getInstance().locate(remoteAddress); } catch (Throwable t) { } return new IPLocation(""); } }