Re: How to deploy one application under two different port?

2006-06-05 Thread Marc Farrow
Are you saying that if a certain user logs in (one that has admin privileges) that you want this person to run the same application on port 9090 while someone else with port 8080? Your question is confusing. Please be more clear. On 6/5/06, red phoenix [EMAIL PROTECTED] wrote: I hava a

Re: How to deploy one application under two different port?

2006-06-05 Thread Nikita Tovstoles
I think that's exactly what red phoenix is asking. If so, I would suggest defining a second Connector inside Service element of your Tomcat's server.xml (under $CATALINA_BASE/conf), HOWEVER: I discovered that under highly-concurrent loads a request to one port is interpreted by Tomcat two

How to deploy one application under two different port?

2006-06-04 Thread red phoenix
I hava a web application with JSP and servlet,I want to deploy it using Tomcat5,but I deploy it under two different port,such as 8080 and 9090,8080 port for general visit,and 9090 port for administrator visit. How to do it? Thanks in advance.