RE: Is it necessary to use a jdk with tomcat?

2003-02-24 Thread Shapira, Yoav
Howdy, Technically, as things are right now, if you don't have JSPs that need to be compiled at runtime, you can use the JRE. If you have JSPs and want to use the JRE, pre-compile your JSPs using JspC. However, please note that the official tomcat requirement for installation is the JDK, not

Re: Is it necessary to use a jdk with tomcat?

2003-02-24 Thread Oliver Geisser
Hi Shapira, Yoav wrote: Howdy, Technically, as things are right now, if you don't have JSPs that need to be compiled at runtime, you can use the JRE. If you have JSPs and want to use the JRE, pre-compile your JSPs using JspC. However, please note that the official tomcat requirement for

Is it necessary to use a jdk with tomcat?

2003-02-23 Thread alain
Hi all, Is it better to run tomcat with a jdk over a jre? Or it doesn't really matter... Thanks! Alain - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Is it necessary to use a jdk with tomcat?

2003-02-23 Thread Santos Jha
Since at the run time you are using jars, It should not matter whether you use jdk o jre. santos [EMAIL PROTECTED] wrote: Hi all, Is it better to run tomcat with a jdk over a jre? Or it doesn't really matter... Thanks! Alain -

Re: Is it necessary to use a jdk with tomcat?

2003-02-23 Thread Bill Barker
[EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi all, Is it better to run tomcat with a jdk over a jre? Or it doesn't really matter... If you are using JSP files, then you need the JDK (to compile them). If not (or, if you pre-compile your JSPs) then it doesn't matter.