I have a web application with name linkpointe in my webapps directory. I would like to create two instances of this application so that I can have different versions running. However, if I place two applications in different directories it does not work - i.e.
http://localhost:8080/firstApp/linkpointe
http://localhost:8080/secondApp/linkpointe
Also, if I change the name to for example something like linkpointe1 and linkpointe2 it still does not work.
The root needs to be exactly linkpointe in order for the app to work - i.e. below
//this works
http://localhost:8080/linkpointe
How can I make two instances of the application run on my Tomcat container? Can someone tell me even how to modify the default root of the application and possibly add more, like linkpointe1 and linkpointe2? Thanks for all your help.