I just need a way to quickly determine why this script times out without 
compiling.  I have two scripts that create an admin interface to two different 
tables.  The only difference in the files is the underlying table structure.  
One works.  Even if I delete the _jsp.java and class files before making the 
request.  The other does not.  

Any ideas on how to resolve this issue would be appreciated.
Charles

-----Original Message-----
From: Bernhard Slominski [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 24, 2005 9:47 AM
To: 'Tomcat Users List'
Subject: AW: Compiling JSP files

Hi Charles,

what you can do is to use an ant task for do the precompilation.
This is a bit smarter than via the command line I guess.
The docu is under
http://jakarta.apache.org/tomcat/tomcat-5.5-doc/jasper-howto.html#Web%20Appl
ication%20Compilation
It's not very well documented, it took me a while to finally get it working, 
but it's working fine for me now.
So if you want to give it a try, I can give you some further assistance, if 
needed.

Cheers 

Bernhard

> -----Urspr�ngliche Nachricht-----
> Von: Charles P. Killmer [mailto:[EMAIL PROTECTED]
> Gesendet: Dienstag, 24. Mai 2005 15:47
> An: Tomcat Users List
> Betreff: Compiling JSP files
> 
> 
> I am having a problem where one of my jsp files won't compile.  Tomcat 
> successfully creates the java file but it never creates the class file 
> and hence never responds to the request for the page.
>  
> I am looking for what needs to be in the command line in order to 
> manually compile the java file the gets created in order to look for 
> errors in that process.
>  
> This is what I have so far but I am getting errors.
> c:\jdk1.5.0\bin\javac -classpath
> %CLASSPATH%;C:\tomcat\work\Catalina\Site1\_;C:\tomcat\common\l
> ib\servlet
> .jar test_jsp.java
>  
>  
> Errors:
> test_jsp.java:5: package javax.servlet.jsp does not exist import 
> javax.servlet.jsp.*; ^
> test_jsp.java:8: package org.apache.jasper.runtime does not exist 
> public final class test_jsp extends 
> org.apache.jasper.runtime.HttpJspBase
>                                                              ^
> test_jsp.java:9: package org.apache.jasper.runtime does not exist
>     implements org.apache.jasper.runtime.JspSourceDependent {
>                                         ^
>  
>  
> Thanks
> Charles
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to