Steven

Not familiar with your setup and if it works in tomcat and not WAS, even
stranger.  But for what it's worth here is my hack, I made a copy of
StrutsPrepareAndExecuteFilter and in the doFilter where it said

ActionMapping mapping = prepare.findActionMapping(request, response);
if (mapping == null) {
        boolean handled = execute.executeStaticResourceRequest(request, 
response);

I added
ActionMapping mapping = prepare.findActionMapping(request, response);
if (mapping != null) {
        if ("".equals(mapping.getName())) {
                mapping = null;
        }
}
if (mapping == null) {
        boolean handled = execute.executeStaticResourceRequest(request, 
response);

not ideal, but fixed my prob

HTH
Ron

-- 
View this message in context: 
http://www.nabble.com/2.1.6-convention-plugin-problem-tp23813162p23834864.html
Sent from the Struts - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org

Reply via email to