Hi,
I have set up the RemoteIpFilter (Tomcat 7.0.8) in the webapps web.xml like
this:
<filter>
<filter-name>RemoteIpFilter</filter-name>
<filter-class>org.apache.catalina.filters.RemoteIpFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>RemoteIpFilter</filter-name>
<url-pattern>/*</url-pattern>
<dispatcher>REQUEST</dispatcher>
</filter-mapping>
The mapping is the first in the filter chain.
But when I call request.getRemoteAddr() in a plain jsp in the root of the
webapp I get the IP from the proxy not from the client.
The proxy sends x-forwared-for correctly.
What can be the problem?
Thank you
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]