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

2001-04-11 Thread William Wishon
cribe: 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 - Received: from unknown (HELO jnm-main.pictureiq.com) (63.127.69.253) by h31.sny.collab.net with SMTP

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

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

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

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