Christopher Schultz wrote:
securityfilter (http://securityfilter.sourceforge.net) can be tricked into doing this. Although the standard operating procedure is to map sf to all URLs (i.e. <url-pattern>/*</url-pattern), one can choose to map it to different patterns and deploy it /twice/: <filter> <filter-name>Security Filter BASIC</filter-name> <filter-class>org.securityfilter.filter.SecurityFilter</filter-class> <init-param> <param-name>config</param-name> <param-value>/WEB-INF/securityfilter-basic.xml</param-value> </init-param> </filter> <filter> <filter-name>Security Filter FORM</filter-name> <filter-class>org.securityfilter.filter.SecurityFilter</filter-class> <init-param> <param-name>config</param-name> <param-value>/WEB-INF/securityfilter-form.xml</param-value> </init-param> </filter> ...
I did not know that securityfilter handled both Basic and Form authentication. Is that recent ?
--------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org