I have two web applications, which I want to be running under the one tomcat instance, but on a different ports to connect, for example first war - under 8080, and second - 8090. Is it possible to do using just two connectors in the server.xml?
So to connect to first app - i'll use address http://localhost:8080/myFirstApp and for second - http://localhost:8090/mySecondApp. How can I do this without running two tomcat innstances on the localhost?