Re: setup for web designers?

2005-12-13 Thread Mark Phillips
explain what I'm talking about. From: Mark Phillips [EMAIL PROTECTED] Organization: Phillips Marketing, Inc. To: users@tomcat.apache.org Subject: Re: setup for web designers? Date: Mon, 12 Dec 2005 21:20:44 -0700 Cc: [EMAIL PROTECTED], [EMAIL PROTECTED] users

Re: setup for web designers?

2005-12-13 Thread Hassan Schroeder
[EMAIL PROTECTED] wrote: How do people set up their tomcat so that the web designers can work on the static content and the programmers can work on the jsp stuff without stepping on each other's toes? In my case the web designers have already been working with apache with their files in

Re: setup for web designers?

2005-12-13 Thread Mark Phillips
Subject: Re: setup for web designers? Rusty, From what I have read, you get better performance if you let tomcat serve the static stuff as well as the jsps. Check the tomcat docs for a discussion of this topic. However, if you still want to put tomcat behind apache, take a look at this article

RE: setup for web designers?

2005-12-13 Thread Carl Olivier
great! Regards, Carl -Original Message- From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: 13 December 2005 18:10 To: Tomcat Users List Subject: RE: setup for web designers? From: JT Neville [mailto:[EMAIL PROTECTED] Subject: RE: setup for web designers? From what I have

RE: setup for web designers?

2005-12-13 Thread JT Neville
Offering performance advice based on a 3-year old Tomcat is highly inappropriate. The 5.5.12 version delivers static content at essentially the same speed as Apache httpd. Suggested reading (note that this is about 5.5.4, and 5.5.12 is yet faster Not everyone can stay on the bleeding edge

Re: setup for web designers?

2005-12-13 Thread rusty+tomcat
Thanks for all of the suggestions. I don't think I've explained my situation clearly. What I would like to do, but maybe this is not a good idea, is to have the static content and dynamic content appear to be in the same directory; i.e., have the same base url. In my jk.conf file I have

Re: setup for web designers?

2005-12-13 Thread rusty+tomcat
Hah! I figured it out; only one of the apache directives in httpd.conf should be used, not all 3: #AddType text/html .jsp AddOutputFilter INCLUDES .jsp #AddHandler server-parsed .jsp Thanks for everyone's help. I'm now a happy camper.

Re: setup for web designers?

2005-12-12 Thread Mark Phillips
Try using %@ include file=header.html % instead. Mark On Monday 12 December 2005 06:29 pm, [EMAIL PROTECTED] wrote: How do people set up their tomcat so that the web designers can work on the static content and the programmers can work on the jsp stuff without stepping on each other's toes?