Re: Just a few questions on my Tomcat Configuration

2009-06-23 Thread Josh Gooding
Gooding [mailto:josh.good...@gmail.com] Subject: Re: Just a few questions on my Tomcat Configuration Maybe each company would have a customized few pages each with their own directories, tied to their own schema, etc, but point to the core application in another directory. Everyone would

Re: Just a few questions on my Tomcat Configuration

2009-06-22 Thread Josh Gooding
] Subject: Re: Just a few questions on my Tomcat Configuration Maybe each company would have a customized few pages each with their own directories, tied to their own schema, etc, but point to the core application in another directory. Everyone would see their own front ends, but use a common

Re: Just a few questions on my Tomcat Configuration

2009-06-22 Thread Pid
] Subject: Re: Just a few questions on my Tomcat Configuration Maybe each company would have a customized few pages each with their own directories, tied to their own schema, etc, but point to the core application in another directory. Everyone would see their own front ends, but use a common

Re: Just a few questions on my Tomcat Configuration

2009-06-22 Thread Josh Gooding
...@gmail.com] Subject: Re: Just a few questions on my Tomcat Configuration Maybe each company would have a customized few pages each with their own directories, tied to their own schema, etc, but point to the core application in another directory. Everyone would see their own front

RE: Just a few questions on my Tomcat Configuration

2009-06-22 Thread Caldarale, Charles R
From: Josh Gooding [mailto:josh.good...@gmail.com] Subject: Re: Just a few questions on my Tomcat Configuration Servlet filters though aren't they defined in the server.xml file? No, filters are an aspect of the servlet spec, and are declared in web.xml (valves are Tomcat-specific

Re: Just a few questions on my Tomcat Configuration

2009-06-22 Thread Pid
to check the docs more closely, however, I am not confident that I will find anything like that in there. - Josh On Wed, Jun 17, 2009 at 10:10 PM, Caldarale, Charles R chuck.caldar...@unisys.com wrote: From: Josh Gooding [mailto:josh.good...@gmail.com] Subject: Re: Just a few questions on my

RE: Just a few questions on my Tomcat Configuration

2009-06-22 Thread George Sexton
This is where my inexperience in tomcat will shine through. Scrapped all xxx.test.com sub-d's and went with test.com/[company id] as the way to go. It prevented me from having to edit the server.xml file and restart tomcat each and everytime that a company is added / subtracted. You are

Re: Just a few questions on my Tomcat Configuration

2009-06-17 Thread Josh Gooding
On Wed, Jun 17, 2009 at 12:02 AM, Caldarale, Charles R chuck.caldar...@unisys.com wrote: From: Josh Gooding [mailto:josh.good...@gmail.com] Subject: Re: Just a few questions on my Tomcat Configuration No, the appBase attribute defines where *all* of the Host webapps go, each in its own

RE: Just a few questions on my Tomcat Configuration

2009-06-17 Thread Caldarale, Charles R
From: Josh Gooding [mailto:josh.good...@gmail.com] Subject: Re: Just a few questions on my Tomcat Configuration This is what I was trying to figure out. How can I add one on the fly without restarting Tomcat each time I add / remove a subdomain. It's theoretically possible, since the APIs

Re: Just a few questions on my Tomcat Configuration

2009-06-17 Thread Josh Gooding
...@gmail.com] Subject: Re: Just a few questions on my Tomcat Configuration This is what I was trying to figure out. How can I add one on the fly without restarting Tomcat each time I add / remove a subdomain. It's theoretically possible, since the APIs exist for Tomcat running embedded

RE: Just a few questions on my Tomcat Configuration

2009-06-17 Thread Caldarale, Charles R
From: Josh Gooding [mailto:josh.good...@gmail.com] Subject: Re: Just a few questions on my Tomcat Configuration Maybe each company would have a customized few pages each with their own directories, tied to their own schema, etc, but point to the core application in another directory

Re: Just a few questions on my Tomcat Configuration

2009-06-16 Thread Josh Gooding
, Caldarale, Charles R chuck.caldar...@unisys.com wrote: From: Josh Gooding [mailto:josh.good...@gmail.com] Subject: Re: Just a few questions on my Tomcat Configuration I use virtual hosting to create /abcapps and /xyzapps and install the program in each directory. The proper term

RE: Just a few questions on my Tomcat Configuration

2009-06-16 Thread Caldarale, Charles R
From: Josh Gooding [mailto:josh.good...@gmail.com] Subject: Re: Just a few questions on my Tomcat Configuration the problem I was having is that instead of using $CATALINA_HOME/[directory name]/ROOT, I was leaving the ROOT directory out and putting it into just the directory name (which

Re: Just a few questions on my Tomcat Configuration

2009-06-16 Thread Josh Gooding
As for the transcription error? it is just that, I fat fingered some keystrokes and it sent it in the middle of an edit. I was going to take out the second abc and edit it to say xyz and have the 2nd Host reflect that. Not sure if I follow how you can have more than one webapp for any given

RE: Just a few questions on my Tomcat Configuration

2009-06-16 Thread Caldarale, Charles R
From: Josh Gooding [mailto:josh.good...@gmail.com] Subject: Re: Just a few questions on my Tomcat Configuration Not sure if I follow how you can have more than one webapp for any given Host. The normal state of affairs is to have multiple webapps; look at what comes with Tomcat. Would

Re: Just a few questions on my Tomcat Configuration

2009-06-03 Thread Josh Gooding
Sorry about that Chuck, I'm a little new to this here... Tomcat version is 6.0.18. My /conf directory is the standard windows installation directory structure it contains no other sud-directories, just my config files. If I modify the directory and add the recomended structure, will Tomcat pick

RE: Just a few questions on my Tomcat Configuration

2009-06-03 Thread Caldarale, Charles R
From: Josh Gooding [mailto:josh.good...@gmail.com] Subject: Re: Just a few questions on my Tomcat Configuration Tomcat version is 6.0.18. Good. My /conf directory is the standard windows installation directory structure it contains no other sud-directories, just my config files. Tomcat

RE: Just a few questions on my Tomcat Configuration

2009-06-03 Thread Caldarale, Charles R
From: Caldarale, Charles R [mailto:chuck.caldar...@unisys.com] Subject: RE: Just a few questions on my Tomcat Configuration Tomcat will create the subdirectories as needed, such as when you deploy a .war file that has an context.xml file in its META-INF directory. It won't create them

Re: Just a few questions on my Tomcat Configuration

2009-06-03 Thread Josh Gooding
On Wed, Jun 3, 2009 at 10:36 AM, Caldarale, Charles R chuck.caldar...@unisys.com wrote: From: Caldarale, Charles R [mailto:chuck.caldar...@unisys.com] Subject: RE: Just a few questions on my Tomcat Configuration Tomcat will create the subdirectories as needed, such as when you deploy

RE: Just a few questions on my Tomcat Configuration

2009-06-03 Thread Caldarale, Charles R
From: Josh Gooding [mailto:josh.good...@gmail.com] Subject: Re: Just a few questions on my Tomcat Configuration Will this happen even if I do not deploy the project via a .war file? Not on 6.0.18 (and I haven't actually tried 6.0.20 yet). But it doesn't really matter - you can create

Re: Just a few questions on my Tomcat Configuration

2009-06-03 Thread Josh Gooding
questions on my Tomcat Configuration Will this happen even if I do not deploy the project via a .war file? Not on 6.0.18 (and I haven't actually tried 6.0.20 yet). But it doesn't really matter - you can create the necessary directories yourself; Tomcat will use them if they exist. - Chuck

RE: Just a few questions on my Tomcat Configuration

2009-06-03 Thread Caldarale, Charles R
From: Josh Gooding [mailto:josh.good...@gmail.com] Subject: Re: Just a few questions on my Tomcat Configuration I use virtual hosting to create /abcapps and /xyzapps and install the program in each directory. The proper term is webapp, not program. A webapp has a spec-defined directory

Re: Just a few questions on my Tomcat Configuration

2009-06-03 Thread Josh Gooding
[mailto:josh.good...@gmail.com] Subject: Re: Just a few questions on my Tomcat Configuration I use virtual hosting to create /abcapps and /xyzapps and install the program in each directory. The proper term is webapp, not program. A webapp has a spec-defined directory structure that must be adhered

RE: Just a few questions on my Tomcat Configuration

2009-06-02 Thread Caldarale, Charles R
From: Josh Gooding [mailto:josh.good...@gmail.com] Subject: Just a few questions on my Tomcat Configuration I have tomcat running on a dedicated Windows server (this is a web server). Tomcat version? Always tell us that - we're not mind readers. My /conf directory is not exactly the