RE: [Windows2k] Start tomcat as Service

2002-11-08 Thread Geiglein, Gary
I am also having a problem getting tomcat 4.1.12 running as a service with jdk 1.4.1 It runs fine with the older jdk. Where should I find the documentation on the third party tool that Remy mentioned? -Original Message- From: Juan Fco. Herrera Utande [mailto:juan.herrera;bluemat.biz]

RE: Tomcat Admin tool Setup

2002-09-26 Thread Geiglein, Gary
The original tomcat-users.xml should look like the text below: ?xml version='1.0' encoding='utf-8'? tomcat-users role rolename=tomcat/ role rolename=role1/ role rolename=manager description=Role to run the 'Application Manager Tool'/ role rolename=admin description=Role to run the

RE: DTD for server.xml??

2003-01-08 Thread Geiglein, Gary
It might be useful to have a reference DTD for server.xml included in the documentation for tomcat as delivered by apache. But not actually reference it in the DOCTYPE declaration in server.xml This would give users a single place to reference for constructing a valid server.xml file while not

RE: DTD for server.xml??

2003-01-08 Thread Geiglein, Gary
We are using tomcat 4.1.12 and 4.1.18 with jdk 1.4.1 and we place the axis.jar in the {context_home}/WEB-INF/lib directory and we place xerces.jar and the xml-apis.jar in the CATALINA_HOME/common/lib directory (like the error message says) -Original Message- From: Ghershony, Arie

RE: Stop, Start Applications - Using TOMCAT Manager , Multiple Services

2003-08-14 Thread Geiglein, Gary
There are two answers to your question. The long answer can be found be searching the archives of this group, this comes up about every couple of months. The short answer is to place this bat file in your TOMCAT_HOME/bin dir, edit the values and run it. Good luck -Original Message-

RE: How to cache the user's input in a jsp page?

2003-09-04 Thread Geiglein, Gary
The problem is that you are loading a new page through javascript without sending the other data fields from the current page in the request. This is entirely a javascript processing problem. To actually make this work without a lot of re-engineering, make OnChange for the select box call a

RE: servlet mapping and url

2005-07-06 Thread Geiglein, Gary
If you create a file in the root of the context (any file, could be an empty file, it just needs to show up in a directory listing) then map your servlet to the same URL you would use to reference the file, then add the file to the welcome-file-list and it will work. Tomcat will not forward to a

RE: Load all JSP pages on startup

2005-07-06 Thread Geiglein, Gary
You could write a servlet that hit all your jsp's when initialized, and set it to load-on-startup. -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Wednesday, June 29, 2005 5:46 AM To: tomcat-user@jakarta.apache.org Subject: Load all JSP pages on startup