Our canned tomcat application's web.xml file contains the following filter...
<filter>
<filter-name>SessionFilter</filter-name>
<filter-class>servlet.BlahSession</filter-class>
</filter>
<filter-mapping>
<filter-name>SessionFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
Is there a way to make this filter not apply to requests that originate from
certain IP addresses?
--
Eric Robinson
