Re: redirect from Servlet

2003-06-26 Thread Yoav Shapira
-- > From: "Paul Wallace" <[EMAIL PROTECTED]> > To: "Tomcat Developers List" <[EMAIL PROTECTED]> > Sent: Thursday, June 26, 2003 11:37 AM > Subject: RE: redirect from Servlet > > > > Hi, thanks, > >I added the line. No 404

Re: redirect from Servlet

2003-06-26 Thread Dayan Simon
Tomcat Developers List" <[EMAIL PROTECTED]> Sent: Thursday, June 26, 2003 11:37 AM Subject: RE: redirect from Servlet > Hi, thanks, >I added the line. No 404 is present, but the servlet maintains, ie > the browser is completely blank. What about the ("/xxx.jsp"

RE: redirect from Servlet

2003-06-25 Thread Paul Wallace
se); - Original Message - From: "Paul Wallace" <[EMAIL PROTECTED]> To: "Tomcat Developers List" <[EMAIL PROTECTED]> Sent: Thursday, June 26, 2003 11:21 AM Subject: redirect from Servlet > Hello, > I have a packaged servlet (com.mypackage.servlets;) in &

Re: redirect from Servlet

2003-06-25 Thread Dayan Simon
Try this getServletConfig().getServletContext().getRequestDispatcher("/xxx.jsp"). forward(request, response); - Original Message - From: "Paul Wallace" <[EMAIL PROTECTED]> To: "Tomcat Developers List" <[EMAIL PROTECTED]> Sent: Thursday, Jun

redirect from Servlet

2003-06-25 Thread Paul Wallace
Hello, I have a packaged servlet (com.mypackage.servlets;) in WEB-INF\classes\com\mypackage\servlets, where it performs its logic dutifully. From the servlet I wish to redirect back to the JSP that called it. Currently the JSP origin cannot be found (404). I have tried all manner of variations