RE: Deploying jsps

2004-12-23 Thread Abhay Hiwarkar
Doesn't any body have a detailed procedure to deploy compiled jsps with Tomcat4.0 ? Abhay -Original Message- From: Abhay Hiwarkar [mailto:[EMAIL PROTECTED] Sent: Thu, 23 Dec 2004 07:33 To: 'Tomcat Users List' Subject: Deploying jsps Hi, I am week in deploying war with Tomcat4

RE: Compile and Deploy JSPs - Tomcat 4.0

2004-12-22 Thread Abhay Hiwarkar
09:21:00 +0200, Abhay Hiwarkar [EMAIL PROTECTED] wrote: Hi, I have around 120 JSP files and want to avoid deploying them with the source-code. Using JSPC utility, I am able to compile them to .java files. If required, I can get the .class files from: /tomcat4.0/work/myApp. Can anybody

Deploying jsps

2004-12-22 Thread Abhay Hiwarkar
Hi, I am week in deploying war with Tomcat4 on Windows. The war contains only the class files generated from JSPs. I am not able to access any JSP through http://localhost:8080/myProj/client.jsp The war file contains the web.xml with mapping of all servlets to jsps I will appriciate your help.

RE: Want to know better way of deploying

2004-12-22 Thread Abhay Hiwarkar
Manisha, Earlier versions of Tomcat lock the file and you can not modify the same while Tomcat is running. Which ver are you running? Abhay -Original Message- From: Goel, Manish Kumar [mailto:[EMAIL PROTECTED] Sent: Thu, 23 Dec 2004 07:29 To: Tomcat Users List Subject: RE: Want to

RE: Compile and Deploy JSPs - Tomcat 4.0

2004-12-22 Thread Abhay Hiwarkar
will be appriciated... Abhay Hiwarkar -Original Message- From: Harry Mantheakis [mailto:[EMAIL PROTECTED] Sent: Wed, 22 Dec 2004 18:32 To: Tomcat Users List Subject: Re: Compile and Deploy JSPs - Tomcat 4.0 I might be picking up fag ends here, but I noticed that in this block: servlet servlet

Difference in compilation by Tomcat and JSPC

2004-12-22 Thread Abhay Hiwarkar
I am picking up a difference in the way Tomcat compiles a JSP when accessed from a browser and the way JSPC compiles - Tomcat produces class file with class as - public class client$jsp extends HttpJspBase {...} while, Jspc produces java file with class as - public class client extends

RE: Want to know better way of deploying

2004-12-22 Thread Abhay Hiwarkar
better way of deploying Thanks all. I am on Windows but Tomcat version is 5.0. So meaning no other solution ? regards Manisha Abhay Hiwarkar [EMAIL PROTECTED] wrote: Manisha, Earlier versions of Tomcat lock the file and you can not modify the same while Tomcat is running. Which ver are you

Compile and Deploy JSPs - Tomcat 4.0

2004-12-20 Thread Abhay Hiwarkar
Hi, I have around 120 JSP files and want to avoid deploying them with the source-code. Using JSPC utility, I am able to compile them to .java files. If required, I can get the .class files from: /tomcat4.0/work/myApp. Can anybody help me deploying only the .class files with Tomcat4.0. Many