>From the FAQ:
>
> 37) Is there a way to execute a JSP from the comandline or from my
> own application?
>(...)
OK, but this solves only a part of the problem. The other part is: how do I
write the parsed JSP file so that its output contains JSP tags which will be
processed later.
I'd like to avoid something like this:
foo.jsp:
<html><body>
<%
System.out.println("This is my processing. It can takes a long time!");
(...)
System.out.println("<%");
%>
System.out.println("This is interpreted dynamically in my page");
<%
System.out.println("%>");
%>
</body></html>
after first parsing:
<html><body>
<%
System.out.println("This is interpreted dynamically in my page");
%>
</body></html>
Boris.
______________________________________________________
Get Your Private, Free Email at http://www.hotmail.com
===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST". For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".