Re: How to execute a dynamic JSP from a Servlet WITHOUT sending it to disk first ?

2001-08-10 Thread L.Fernando
That´s a good aproach Thanks for your help, Jim. Fernando. - Original Message - From: "Jim Seach" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, August 09, 2001 8:23 PM Subject: Re: How to execute a dynamic JSP from a Servlet WITHOUT se

Re: How to execute a dynamic JSP from a Servlet WITHOUT sending it to disk first ?

2001-08-10 Thread L.Fernando
ow to execute a dynamic JSP from a Servlet WITHOUT sending it to disk first ? > Hi, > > it's not good practice since it well be heavy processor load. > Actually JSP being transformed to servlet, and JspServlet forward incoming > request to it. JSP is not an interpriter. JSP pa

Re: How to execute a dynamic JSP from a Servlet WITHOUT sending it to disk first ?

2001-08-09 Thread Jim Seach
Fernando, Why do you need to create the JSP page itself dynamically? Couldn't you just create one or several JSP pages, then in your servlet, get the data, put it into request attributes, and call the proper JSP page to display the data? The JSP page would then take the data from the request at

RE: How to execute a dynamic JSP from a Servlet WITHOUT sending it to disk first ?

2001-08-09 Thread Andrey Aristarkhov
Hi, it's not good practice since it well be heavy processor load. Actually JSP being transformed to servlet, and JspServlet forward incoming request to it. JSP is not an interpriter. JSP page need to be compiled into servlet each time its (JSP) source changes on disk if it's the first request to