forward thing: tomcat 4.1

2003-12-01 Thread Kumar, Sumit
Hello, This is more like a jsp question rather then the tomcat one but pardon me for asking here. In my servlet, I do a getServletContext().getRequestDispatcher( /reports.jsp?msg='selectEval'pid= + pid).forward( req, res ). The code is given below. I believe this should forward it to

Re: forward thing: tomcat 4.1

2003-12-01 Thread Tim Funk
You must follow the forward() with a return inside of a servlet. forward() is just a plain old java method call. -Tim Kumar, Sumit wrote: Hello, This is more like a jsp question rather then the tomcat one but pardon me for asking here. In my servlet, I do a

Re: forward thing: tomcat 4.1

2003-12-01 Thread Doug Parsons
( /OtaceEvalFormRpt.jsp).forward( req, res ); } Doug - Original Message - From: Kumar, Sumit [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Monday, December 01, 2003 11:58 AM Subject: forward thing: tomcat 4.1 Hello, This is more like a jsp question rather

Re: forward thing: tomcat 4.1

2003-12-01 Thread Doug Parsons
, 2003 11:58 AM Subject: forward thing: tomcat 4.1 Hello, This is more like a jsp question rather then the tomcat one but pardon me for asking here. In my servlet, I do a getServletContext().getRequestDispatcher( /reports.jsp?msg='selectEval'pid= + pid).forward( req, res ). The code is given