Re: Imaginative webapp setup. Is this possible to do?

2001-08-23 Thread Jeff Turner
On Thu, Aug 23, 2001 at 12:43:49AM -0500, Brandon Cruz wrote: Thank you, but I've been told that... In Tomcat 3.x, the class loader follows the usual delegate upwards then look locally approach, so that the class would be loaded from tomcat_home/lib unconditionally. In Tomcat 4.x, the

Re: Imaginative webapp setup. Is this possible to do?

2001-08-23 Thread Craig R. McClanahan
On Thu, 23 Aug 2001, Jeff Turner wrote: Date: Thu, 23 Aug 2001 19:13:21 +1000 From: Jeff Turner [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Imaginative webapp setup. Is this possible to do? On Thu, Aug 23, 2001 at 12:43:49AM -0500, Brandon Cruz wrote

Imaginative webapp setup. Is this possible to do?

2001-08-22 Thread Gabriel J Zimmerman
I have a server that has many virtual hosts, say http://www.myhost1.com/, http://www.myhost2.com, http://www.myhost3.com etc. etc. Is it possible to create a webapp that is hosted at the / level for each of these hosts, where the servlets,tag libraries, and java classes located in the WEB-INF

Re: Imaginative webapp setup. Is this possible to do?

2001-08-22 Thread Dmitri Colebatch
yep - but it'd be something you'd do in one webapp... put some logic in your servlet (assuming you're using model-2 arch) that looks at the request, and uses the appropriate jsp... have some protocol like hostname + _homepage.jsp... for static html, probably be easier to use apache virtuals for

RE: Imaginative webapp setup. Is this possible to do?

2001-08-22 Thread Brandon Cruz
for the old applications using them. Brandon -Original Message- From: Jeff Turner [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 21, 2001 6:55 PM To: [EMAIL PROTECTED] Subject: Re: Imaginative webapp setup. Is this possible to do? On Tue, Aug 21, 2001 at 05:25:42PM -0400, Gabriel J

Re: Imaginative webapp setup. Is this possible to do?

2001-08-22 Thread Jeff Turner
On Wed, Aug 22, 2001 at 09:58:33AM -0500, Brandon Cruz wrote: So...if you can put all common class files into tomcat_home/classes, can we put newer versions of the same class files into the new applications web-inf/classes and assume that they will be read first by the web application?

Imaginative webapp setup. Is this possible to do?

2001-08-21 Thread Gabriel J Zimmerman
I have a server that has many virtual hosts, say http://www.myhost1.com/, http://www.myhost2.com, http://www.myhost3.com etc. etc. Is it possible to create a webapp that is hosted at the / level for each of these hosts, where the servlets,tag libraries, and java classes located in the WEB-INF

Re: Imaginative webapp setup. Is this possible to do?

2001-08-21 Thread Jeff Turner
On Tue, Aug 21, 2001 at 05:25:42PM -0400, Gabriel J Zimmerman wrote: I have a server that has many virtual hosts, say http://www.myhost1.com/, http://www.myhost2.com, http://www.myhost3.com etc. etc. Yer.. once did a site with 36 of these. It wasn't pleasant ;) Is it possible to create a