Hi all

My servlet passes some data to the JSP pages in the following way:

     RequestDispatcher disp;
     disp = getServletContext().getRequestDispatcher("/jsp/my.jsp");
     disp.forward(request, response);

The JSP files are never directly called from the client. The file my.jsp is
converted to .class file only for the first time (ie when no class file is
available). After that, even if I change the JSP file, the .jsp file is not
compiled. It tries to use the same old .class file. Why?

I have the JSP property pageCheckSecs=0.

I have included the servlet classes in system class path (i.e not in
servlet.classpath of weblogic.properties, because the 'ClassCastException' is
irritating).

I am not sure if this is a bug in Weblogic 4.51 on NT.

Thanks for any help.
--
shiv
[EMAIL PROTECTED]



__________________________________________________
Do You Yahoo!?
Talk to your friends online with Yahoo! Messenger.
http://im.yahoo.com

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to