Re: Of .war and .jar files - and .jsp class files

2004-04-02 Thread Malcolm Warren
That's not quite what I meant, but I shan't want to bother people any more with this question. I can get along with what you told me in another email. Thanks for you time. Malcolm Warren On Thu, 1 Apr 2004 09:06:51 -0600, QM [EMAIL PROTECTED] wrote: : The automatically generated .class files in

Re: Of .war and .jar files - and .jsp class files

2004-04-01 Thread Malcolm Warren
Dear QM, Just a footnote to this problem, if you're interested. The difference between Tomcat and Jrun on this problem of packing up the automatcally-generated .class files for .jsps is considerable, and I have to say that in this case Jrun looks more logical. With Tomcat, as you have

Re: Of .war and .jar files - and .jsp class files

2004-04-01 Thread Niki Ivanchev
Reading http://jakarta.apache.org/tomcat/tomcat-5.0-doc/setup.html I have noticed this quote * *Java location*: The installer will use the registry or the JAVA_HOME environment variable to determine the base path of the JDK or a JRE. If only a JRE (or an incorrect path) is specified,

RE: Of .war and .jar files - and .jsp class files

2004-04-01 Thread Shapira, Yoav
Hi, to say that in this case Jrun looks more logical. With Tomcat, as you have explained, in order to get it to work you have to create all the servlet mappings. In order to get what to work? Tomcat will run your JSPs without any mappings in web.xml (except the default JSP servlet of course,

Re: Of .war and .jar files - and .jsp class files

2004-04-01 Thread QM
: The automatically generated .class files in Tomcat are in the : org.apache.jsp package, but the folders /org/apache/jsp aren't there in : the file system, if you see what I mean. It would have been nice if the : package logic had been followed through. ? I'm not sure I follow. I just

RE: Of .war and .jar files - and .jsp class files

2004-03-31 Thread Martin Alley
Stick the class files in WEB-INF/classes in the appropriate package hierarchy. Eg. Com.mycompany.myclass in WEB-INF/classes/com/mycompany/myclass.class -Original Message- From: Malcolm Warren [mailto:[EMAIL PROTECTED] Sent: 31 March 2004 11:03 To: [EMAIL PROTECTED] Subject: Of .war and

Re: Of .war and .jar files - and .jsp class files

2004-03-31 Thread QM
On Wed, Mar 31, 2004 at 12:02:40PM +0200, Malcolm Warren wrote: : Jrun gave an additional security possibility that I am unable to extend to : Tomcat. In Jrun you do not need to place your .jsp files, nor the : automatically generated .java files on your production server. I could : simply .jar

RE: Of .war and .jar files - and .jsp class files

2004-03-31 Thread FRANCOIS Dufour
PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Subject: RE: Of .war and .jar files - and .jsp class files Date: Wed, 31 Mar 2004 12:44:14 +0100 Stick the class files in WEB-INF/classes in the appropriate package hierarchy. Eg. Com.mycompany.myclass in WEB-INF/classes/com/mycompany/myclass.class

Re: Of .war and .jar files - and .jsp class files

2004-03-31 Thread Malcolm Warren
Thank you very much for your answers, but they haven't quite hit the mark yet. Every .jsp page in Tomcat, as we all know, is compiled in /work/Standalone/localhost/ in an appropriate application folder e.g. _ is the folder in the case of the ROOT application. It's fine by me if this is done

RE: Of .war and .jar files - and .jsp class files

2004-03-31 Thread Shapira, Yoav
- From: Malcolm Warren [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 31, 2004 7:55 AM To: Tomcat Users List Subject: Re: Of .war and .jar files - and .jsp class files Thank you very much for your answers, but they haven't quite hit the mark yet. Every .jsp page in Tomcat, as we all know

Re: Of .war and .jar files - and .jsp class files

2004-03-31 Thread Niki Ivanchev
: Wednesday, March 31, 2004 7:55 AM To: Tomcat Users List Subject: Re: Of .war and .jar files - and .jsp class files Thank you very much for your answers, but they haven't quite hit the mark yet. Every .jsp page in Tomcat, as we all know, is compiled in /work/Standalone/localhost

Re: Of .war and .jar files - and .jsp class files

2004-03-31 Thread QM
On Wed, Mar 31, 2004 at 02:55:16PM +0200, Malcolm Warren wrote: : Now when I transfer everything to my production server I would like to : eliminate all of the .jsp pages from the application, and all of the .java : files, and just send a .jar file containing the .class files in :

Re: Of .war and .jar files - and .jsp class files

2004-03-31 Thread Malcolm Warren
Ok, thanks. That looks like what I'm looking for. Sorry I didn't catch on after your first missive. On Wed, 31 Mar 2004 09:50:41 -0600, QM [EMAIL PROTECTED] wrote: On Wed, Mar 31, 2004 at 02:55:16PM +0200, Malcolm Warren wrote: : Now when I transfer everything to my production server I would like