Hello, I'm facing a little problem with
struts 2 and form based authentication on
JBoss. I managed to make almost everything work as i wanted, except 1 little thing: when i try to call a struts2 tag inside the login.jsp page i get the following error:
The Struts dispatcher cannot be found. This is usually caused by using Struts tags without the associated filter.Struts tags are only usable when the request has passed through its servlet filter, which initializes the Struts dispatcher needed for this tag
That's happening because instead of passing through the Struts2
servlet filter i'm redirected to the container form based authentication "handler". This is the related part of the web.xml file:
Is there any way to solve this problem?
(Sorry for my bad english!)