1 Reply Latest reply on Aug 11, 2003 7:53 PM by lwahana

    filter for j_security_check

    tsangcn

      Hello,

      I am using form-based authentiation and JBoss 3.2.1 and it works fine.
      Then I add a filter for j_security_check to do some pre-login checking.
      The web.xml is like the following:


      <filter-name>loginFilter</filter-name>
      <display-name>login filter</display-name>
      <filter-class>my.package.LoginFilter</filter-class>

      <filter-mapping>
      <filter-name>loginFilter</filter-name>
      <url-pattern>/j_security_check</url-pattern>
      </filter-mapping>

      The filter is never called.
      Is JBoss/Jetty not supporting filter for j_security_check?
      (I found this example from WebSphere documentation)

      Thanks
      CN