0 Replies Latest reply on Dec 11, 2014 10:36 AM by zizou84

    Custom error page not showing

    zizou84

      I am developping a java ee6 application under jboss 7.1.1.Final.

      I am using jboss seam 3 security.

       

      My problem is that my custom 401 error page is not showing and i had always the default 401 error page.

      404 error page is working fine.

       

       <error-page>
          <error-code>401</error-code>
          <location>/accessDeniedPage.jsf</location>
        </error-page>
         <error-page>
          <error-code>404</error-code>
          <location>/pageNotFound.jsf</location>
        </error-page>
      
      

       

      Why is only my 401 error page not showing and how could i debug the problem

      thanks