I have a situation which is best handled by writing a servlet filter. Depending on the results of the filter, I need to forward the request to a different page. I'd really like to specify that page in my struts-config.xml as a global forward and reference that directly or indirectly from the filter. What is the best way to handle this? This is easy if I just put code inside each Struts Action "execute" method, but for what I need to do, a Filter makes more sense.

