If your image servlet is a true servlet acting outside of struts, it won't be subject to the interceptor stack. If it's actually an image action, just assign it a different interceptor stack that doesn't contain your LoginInterceptor and you'll be good to go. (*Chris*)
On Sun, May 3, 2009 at 8:28 PM, Kate Fox <k...@anchorintelligence.com>wrote: > I have a login interceptor to check login on all my pages. I also have a > servlet that serves up images. The servlet does not go through the login > interceptor. Is there a way to force it that way? > > Here is my login interceptor definition: > > <interceptors> > <interceptor name="login" class="LoginInterceptor" /> > <interceptor-stack name="defaultLoginStack"> > <interceptor-ref name="servlet-config" /> > <interceptor-ref name="params" /> > <interceptor-ref name="login" /> > <interceptor-ref name="prepare" /> > <interceptor-ref name="i18n"/> > <interceptor-ref name="chain" /> > </interceptor-stack> > </interceptors> > > Thanks for your help, > > Kate > > --------------------------------------------------------------------- > To unsubscribe, e-mail: user-unsubscr...@struts.apache.org > For additional commands, e-mail: user-h...@struts.apache.org > >