Re: Application configuration

2005-04-29 Thread Dave Butler
Andrea Aime wrote: Hi, I have a set of property files that allow me to configure my application. They contain things like file system locations, database access parameters and so on. Now, I would like to put them outside the war file in order to make installation easier for people not used to

Re: Application configuration

2005-04-29 Thread Will Hartung
From: Dave Butler [EMAIL PROTECTED] Sent: Friday, April 29, 2005 8:39 AM Andrea Aime wrote: I have a set of property files that allow me to configure my application. They contain things like file system locations, database access parameters and so on. Now, I would like to put them

Re: Application Configuration

2003-09-19 Thread Rishikesh Tembe
Do you really need to have webapps/examples/myApp/* ? Otherwise, just have webapps/myApp/* and create a context for myApp... -Rishi. On Thu, 18 Sep 2003 20:18:28 -0400, Renda, Michael [EMAIL PROTECTED] said: Hi, I'm having a simple application configuration problem. 1. Tomcat 4.1.27

RE: Application Configuration

2003-09-19 Thread Renda, Michael
a resource at mydomain/myApp/servlet/TestingServlet, I get a 404. I can, however, access a resource at mydomain/myApp/SimplePage.jsp. -Original Message- From: Rishikesh Tembe [mailto:[EMAIL PROTECTED] Sent: Friday, September 19, 2003 2:36 AM To: Tomcat Users List Subject: Re: Application

Re: Application Configuration

2003-09-19 Thread Dirk Griesbach
Michael, the servlet-mapping is missung in your web-xml: add the following: servlet-mapping servlet-name your servlet /servlet-name url-pattern the URL through which it should be accessible /url-pattern /servlet-mapping Hope this helps

RE: Application configuration

2001-12-14 Thread Camara, Jose
PROTECTED] mailto:[EMAIL PROTECTED] Tel. 650-687-6200 Direct. 650-687-4722 Fax. 650-687-0040 Toll Free: 800-653-3871 -Original Message- From: Larry Isaacs [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 13, 2001 10:10 AM To: 'Tomcat Users List' Subject: RE: Application configuration You

RE: Application configuration

2001-12-13 Thread Larry Isaacs
The configuration you show only lets Tomcat execute servlets. All other content, Apache will try to serve directly. Is this your intent? It would also help to know which version of Tomcat 3.x you are using. (Note that Tomcat 3.3 does the best job of automating the connection to Apache.) In

RE: Application configuration

2001-12-13 Thread Camara, Jose
: Larry Isaacs [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 13, 2001 4:58 AM To: 'Tomcat Users List' Subject: RE: Application configuration The configuration you show only lets Tomcat execute servlets. All other content, Apache will try to serve directly. Is this your intent? It would also

RE: Application configuration

2001-12-13 Thread Larry Isaacs
12:27 PM To: 'Tomcat Users List' Subject: RE: Application configuration Thanks Larry, I don't even reach the point where Tomcat itself is running my application. I guess I need to indicate Tomcat where and how to recognize the classes for my application. Setting up my application