Consolidating Multiple Tomcats

2007-12-19 Thread Bai Shen
Currently, I have three different applications that are hosted using
Tomcat.  They were all developed separately, and I'd like to set them up to
run on the same machine, preferably on the same port.  Is there a way to put
them together in the same tomcat while still retaining their own jars and
settings?  I put two of them together, but they had a conflict as they were
using different jars to handle xml.  Any suggestions?  TIA.

Bai Shen


Configuring different Context's to use different ports

2008-01-11 Thread Bai Shen
I have several web apps running on tomcat, each with their own context.  I
also have connectors for 80 and 443.  The problem is that I'd like some of
the context's to use port 80 only, and some of them to use port 443 only.
Right now, tomcat will accept connections to all contexts on all defined
ports.


Re: Configuring different Context's to use different ports

2008-01-14 Thread Bai Shen
What do you mean?  I'm not sure how to set that up.

On Jan 11, 2008 9:08 PM, Bill Barker <[EMAIL PROTECTED]> wrote:

> Far and away the easiest way to solve this is with a Filter that will
> sendRedirct to scheme that the webapp wants to respond to.  It is also
> possible to do with multiple  elements, but I don't recommend
> that
> route.
>
> "Bai Shen" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> >I have several web apps running on tomcat, each with their own context.
>  I
> > also have connectors for 80 and 443.  The problem is that I'd like some
> of
> > the context's to use port 80 only, and some of them to use port 443
> only.
> > Right now, tomcat will accept connections to all contexts on all defined
> > ports.
> >
>
>
>
>
> -
> To start a new topic, e-mail: users@tomcat.apache.org
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


Running Tomcat with JRE?

2008-09-09 Thread Bai Shen
Looking at the tomcat site, it says that I can run Tomcat 6 with a JRE
instead of a full JDK.  So I downloaded Tomcat 6.0.18 and I have JAVA_HOME
pointing at JRE 1.6.0_07.  However, when I go to start tomcat, it tells me
that the JAVA_HOME variable needs to point at a JDK, not a JRE.

Am I missing something or is this a leftover from the previous versions?
TIA.