0 Replies Latest reply on Apr 7, 2005 6:02 AM by asty

    RequestDispatcher error

    asty

      Hi,
      I am working on JBoss 3.2.1.
      I have a module Validation which has a servlet SystemController.java

       HttpSession session = request.getSession(true);
       System.out.println(loggerIdentity);
       //System.out.println(postedAt);
       session.setAttribute("LoggerIdentity", loggerIdentity);
       session.setAttribute("PostedAt",postedAt);
       RequestDispatcher rd = request.getRequestDispatcher("../InformationSystem/ISController");
       System.out.println(rd);
       rd.forward(request, response);
      


      This servlet calls another servlet ISController, in InformationSystem module.
      But when I print rd it comes null.
      Can anyone please tell me how to call the ISController .
      Asty.