Re: restart servlet from cron

2005-12-23 Thread rusty+tomcat
Here's what's in one of my ant files to stop a web app. Start and restart are probably similar. taskdef name=tc-stop classname=org.apache.catalina.ant.StopTask / target name=tomcat-stop tc-stop url=http://myhost.mycompany.com/manager/; username=manager

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.