RE: [ANS] RE: virtual hosts on different ports

2001-04-11 Thread William Wishon
;mailto:[EMAIL PROTECTED]> > > list-unsubscribe: <mailto:[EMAIL PROTECTED]> > > list-post: <mailto:[EMAIL PROTECTED]> > > Delivered-To: mailing list [EMAIL PROTECTED] > > Received: (qmail 45276 invoked from network); 10 Apr 2001 18:49:36 - > > Recei

RE: virtual hosts on different ports

2001-04-10 Thread William Wishon
You can configure tomcat to listen on multiple ports, but you cannot restrict particular contexts to particular ports. If you setup tomcat to listen on ports 8080 and 8082 then all of your contexts become available on both ports. Using virtual hosts you can restrict particular contexts to partic

RE: Different hosts with different ports

2001-03-05 Thread William Wishon
I'm trying to do a very similar (if not the same) thing. You might want to check out the thread "Assigning Servlets to different ports.". If you are OK with having every servlet available on all virtual hosts then you just need to add another Connector and change the port property. That will le

RE: Assigning Servlets to different ports.

2001-03-05 Thread William Wishon
> In Tomcat 3.3, you can setup two different ContextManager's, so > each will listen to a > different port. I believe it should be the same in 3.2.1? In the configuration I am looking at (for Tomcat 3.2.1) it looks like the connectors are where the port numbers get assigned. Is there a port prop

Server.xml DTD?

2001-03-02 Thread William Wishon
Is there a DTD for server.xml? If so could somebody point me at it. Thanks, Bill - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

RE: Assigning Servlets to different ports.

2001-03-02 Thread William Wishon
orts. > > > Hi William! > > Configure two contexts, and load each servlet in one context. > > Un saludo, > > Alex. > > William Wishon wrote: > > > Hi, > > > > I am trying to assign one of my servlets (say servlet1) > to port 8080 and >

Assigning Servlets to different ports.

2001-03-01 Thread William Wishon
Hi, I am trying to assign one of my servlets (say servlet1) to port 8080 and another one (say servlet2) to port 8081. I want them totally separate so that I can't access servlet2 on port 8080 nor servlet1 on 8081. Can anyone help me figure out how to do this? -Bill --