Re: Further details - RequestDispatcher in servlet is not working

2003-12-19 Thread Basavaraju P. Banakar
servlets path.. look into this ..u may find something helpful..) Regards, Basu. - Original Message - From: Teja Jo [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Friday, December 19, 2003 9:47 AM Subject: RE: Further details - RequestDispatcher in servlet is not working

RE: Further details - RequestDispatcher in servlet is not working

2003-12-19 Thread Shapira, Yoav
details - RequestDispatcher in servlet is not working Hello, It is the doGet method of servlet - what will it return after the forward call- its return type is void.Here after the forward call when I had given a log message - that message got logged (the RequestDispatcher object got is not null

RE: Further details - RequestDispatcher in servlet is not working

2003-12-18 Thread Shapira, Yoav
Howdy, //uptil this point it gets executed properly strAddress = /WEB-INF/internalJsp/ReceiveJsp.jsp; RequestDispatcher objReqDispatcher = request.getRequestDispatcher(strAddress); objReqDispatcher.forward(request,response); Here request dispatcher is not working - it doesn't

RE: Further details - RequestDispatcher in servlet is not working

2003-12-18 Thread Teja Jo
Hello, It is the doGet method of servlet - what will it return after the forward call- its return type is void.Here after the forward call when I had given a log message - that message got logged (the RequestDispatcher object got is not null was proved since I printed that object address) -