Well, that won't work well unless you've extracted the static files out of the Struts jar.
As the S2 documentation states, the expected filter mapping is "/*". This is because Struts contains static files (the Dojo libraries, in this case), and expects to see *every* request, so it can serve those files.
By mapping to something other than the recommended mapping you're bypassing the default S2 behavior, and must adjust your deployment accordingly.
Arun Kumar
Ranch Hand
Joined: May 22, 2006
Posts: 62
posted
0
You are life saver Dave.
This was the quicket solution I found on javaranch.
"/*" worked.
Dai Quach
Greenhorn
Joined: Aug 17, 2004
Posts: 1
posted
0
Thank you very much! This problem make me crazy.
I changed to "/*" and it works well.