Hello,

I got the following problem:

I used this test setting for my login filter:

  <filter-mapping>
    <filter-name>authenticationFilter</filter-name>
    <url-pattern>/groups.jsp</url-pattern>
  </filter-mapping>

Everything worked as expected. Now, as the filter ist done and tested,
I wanted to protect the whole page. I've tried this by defining

  <filter-mapping>
    <filter-name>authenticationFilter</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>

The problem is, when I do this, the browser cannot find any resource
files (not application resource files) like Stylesheets, Pictures etc.
Additionally, the login seems to work, but the forward to the
requested page does not work.

Has anyone an explation for this strange behavior?

Regards,
Arne


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to