Jasper Pre-Compiling JSPs with the same name

2003-09-26 Thread Niall Lennon
Hi, I have JSPs in seperate folders with the same name and when i try to precompile them (Using ANT) i get a duplicate class name error... as you'd expect when i pass in one class package name e.g. Any ideas how i might resolve this issue?

Pre-compiling JSPs

2003-02-28 Thread Robert Csiki
lot in advance, Robert -Original Message- From: Robert Csiki [mailto:[EMAIL PROTECTED] Sent: February 28, 2003 9:59 AM To: 'Tomcat Users List' Subject: Pre-compiling JSPs Hi there, I'm trying to pre-compile all the JSPs before deploying and running my web app (for fast init

Pre-compiling JSPs

2003-02-28 Thread Robert Csiki
Hi there, I'm trying to pre-compile all the JSPs before deploying and running Webtop (for fast initial invocation purposes) under Tomcat 4.0.x app server. I've found both jspc.bat tool from Tomcat/bin and Ant's JspC task (that are doing the same thing) are generating outputs (that is, .java and

Re: Instructions for pre-compiling JSPs

2001-01-18 Thread Nick Holloway
[EMAIL PROTECTED] (Hawkins, Keith Keith) writes: > I guess I would want to know what commands the compile servlet > executed inside it's init message. I'm looking to figure out > how to get the resulting class files to be recognized by > Tomcat (the XXX.class naming convention, etc.) You just m

RE: Instructions for pre-compiling JSPs

2001-01-17 Thread Hawkins, Keith (Keith)
Thanks, Keith -Original Message- From: C. Jason Benedict [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 16, 2001 11:22 AM To: [EMAIL PROTECTED] Subject: Re: Instructions for pre-compiling JSPs One of the guys here at work coded a servlet that was put in the web.xml. On init it w

Re: Instructions for pre-compiling JSPs

2001-01-16 Thread C. Jason Benedict
One of the guys here at work coded a servlet that was put in the web.xml. On init it would go out and compile the jsp's for the webapp. I have not had a chance to look at it myself, but I want to know if this is even going to change anything? Are the jsp's going to load faster at first call, o

Instructions for pre-compiling JSPs

2001-01-15 Thread Hawkins, Keith (Keith)
Can someone provide or point me to the steps needed to pre-compile JSP pages for use with Tomcat? Thanks, Keith - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

RE: Pre-compiling JSPs

2001-01-11 Thread G.Nagarajan
yes, the files have to be compiled and the class files have to be put in the classpath. -Original Message- From: carnell [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 11, 2001 4:59 PM To: [EMAIL PROTECTED] Subject: Re: Pre-compiling JSPs Thanks, I got jspc.sh working.. forgot

Re: Pre-compiling JSPs

2001-01-11 Thread carnell
PROTECTED]> Sent: Thursday, January 11, 2001 4:40 PM Subject: RE: Pre-compiling JSPs > There is an utility called jspc. To use the generated servlets, the web.xml > file has to be modified to specify the servlet mapping for the jsp file. If > this is not done, tomcat will ignore the cl

RE: Pre-compiling JSPs

2001-01-11 Thread G.Nagarajan
Sent: Thursday, January 11, 2001 4:10 PM To: Tomcat-user Subject: Pre-compiling JSPs There does not seem to be much documentation on precompiling JSPs. How would I precompile a bunch of JSPs (used in the ROOT webapp on a remote linux machine), for instance index.jsp(or all files in the directory). Is bui

RE: Pre-compiling JSPs

2001-01-11 Thread Michael Wentzel
Take a look at jspc in TOMCAT_HOME/bin/. --- Michael Wentzel Software Developer http://www.aswethink.com">Software As We Think mailto:[EMAIL PROTECTED]">Michael Wentzel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Pre-compiling JSPs

2001-01-11 Thread carnell
There does not seem to be much documentation on precompiling JSPs. How would I precompile a bunch of JSPs (used in the ROOT webapp on a remote linux machine), for instance index.jsp(or all files in the directory). Is build.sh appropiate? I do not need to deploy, I simply upload my changed JSP to