Re: implementing javax.servlet.Filter w/Struts

2006-06-01 Thread Konstantin Priblouda
--- CrackheadMillionaire <[EMAIL PROTECTED]> wrote: > Also, can anyone explain why my filter is bypassed > if the mapping is for *.jsp, but gets hit for *.do? > > Any advice is greatly appreciated. I think that nobody would say you why this happens, unless you post relevant code from yo

Re: implementing javax.servlet.Filter w/Struts

2006-05-31 Thread CrackheadMillionaire
Hello all - This was a pebkac style error. I have solved the problem. Thank you for the rapid replies. Take care. brian "Frank W. Zammetti" <[EMAIL PROTECTED]> wrote: On the second point, can you list your web.xml, the portion where you map the filter at least? Ch

Re: implementing javax.servlet.Filter w/Struts

2006-05-31 Thread Wendy Smoak
On 5/31/06, CrackheadMillionaire <[EMAIL PROTECTED]> wrote: I recently implemented a filter to push some information into the session. Great. However, after filter processing and within my DispatchAction, if I make a call to request.getSession().getAttribute("whateverName"); the values are

Re: implementing javax.servlet.Filter w/Struts

2006-05-31 Thread Frank W. Zammetti
On the second point, can you list your web.xml, the portion where you map the filter at least? Chances are you have it mapped incorrectly. On the first point, can we see your filter? There's no inherent reason you can't do what your trying to do with a filter and Struts, so there is some det