Re: Bezerk - tomcat calls JSP twice ?

2002-12-02 Thread Craig R. McClanahan
On Mon, 2 Dec 2002, Stephen Riek 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 ? In Servlet 2.3 (i.e. Tomcat 4.x), Filters are

Bezerk - tomcat calls JSP twice ?

2002-12-01 Thread Stephen Riek
I'm either still suffering from the effects of Saturday night or really didn't understand something about Tomcat, because the following has me completely surprised and unable to explain. I have a very very simple JSP /Products/index.jsp as follows - % int i = 1; System.out.println(JSP PAGE

Re: Bezerk - tomcat calls JSP twice ?

2002-12-01 Thread Paul Yunusov
On Sunday 01 December 2002 10:23 pm, Stephen Riek wrote: I'm either still suffering from the effects of Saturday night or really didn't understand something about Tomcat, because the following has me completely surprised and unable to explain. I have a very very simple JSP /Products/index.jsp

Re: Bezerk - tomcat calls JSP twice ?

2002-12-01 Thread Stephen Riek
Thanks for the reply Paul. Might be the hangover - I get correct output when I follow your steps and refresh with the parameter still in the URL and without too. I use Tomcat 4.1.12. My output with the parameter in the URL: JSP PAGE DEBUGGING 1 JSP

Re: Bezerk - tomcat calls JSP twice ?

2002-12-01 Thread Jacob Kjome
At 03:53 AM 12/2/2002 +, 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.