4 Replies Latest reply on May 21, 2002 7:20 PM by mefesto78

    Forward "request" from Servlet to JSP not work !

    project

      Dear all,
      After i got the desired information from DB through EJB, i pass data back to Servlet and use 'request.setAttribute("xxx",yyy)' to pass data to JSP by using
      RequestDispatcher dispatcher =
      getServletContext().getRequestDispatcher(URL);
      dispatcher.forward(request, response);
      However, this coding doesn't work !
      Can anyone help? thanks !

      ps: i have ever used Resin web server for developing web pages before with Servlet and JSP, this coding work. Why it can't work now?