0 Replies Latest reply on May 23, 2006 11:38 AM by ayusman

    servlet context of an jsp page.

      Hi All,

      Please correct me if I am wrong.

      1)Does tomcat 5.5 also provide an implementation of jsp specs?

      2) In side an jsp if I write

      this.getClass().getName() then

      the class name I get is an implementation of servlet only? (I get something like org.apache.jsp_myjspname)

      So can I get the servlet config object of this class by doing

      this.getServletConfig() ???

      and the context of this jsp page (or class) by doing

      this.getServletConfig().getServletContext()

      Please suggest