At 03:53 AM 12/2/2002 +0000, you wrote:
If a Filter makes a call to a page using for example RequestDispatcher.forward("/Products/index.jsp"), will that request dispatcher bypass any filters, or will it still be subject to all filter rules ?
The filters will be bypassed. Quoting Craig R. McClanahan....
"If your app uses a request dispatcher, you'll find that filters and authentication are *not* applied to the dispatched request. They are only applied on the original request from the client." Jake
