hi here;
i am doing a normal (testing) java web app. currently i am running tomcat4.1 on linux. i have change the port from 8080 to 8888 and i am using context path to point to the source (jsp file) directory.
so, the port 8080 will have a context path look like this:
<Context path="/jsp" docBase="/home/swx/jspAdm" debug="0"
reloadable="true" crossContext="true"/>
so the connection url to point to it will be
http:ip:8888/jsp/login.jsp
my question now is, i have put another version (slightly change the content of jsp) in the dir "/home/csb/jspAdm" is it possible if i want to access it like this
http:ip:7777/jsp/login.jsp
how do i conf in my server.xml???
i am doing a normal (testing) java web app. currently i am running tomcat4.1 on linux. i have change the port from 8080 to 8888 and i am using context path to point to the source (jsp file) directory.
so, the port 8080 will have a context path look like this:
<Context path="/jsp" docBase="/home/swx/jspAdm" debug="0"
reloadable="true" crossContext="true"/>
so the connection url to point to it will be
http:ip:8888/jsp/login.jsp
my question now is, i have put another version (slightly change the content of jsp) in the dir "/home/csb/jspAdm" is it possible if i want to access it like this
http:ip:7777/jsp/login.jsp
how do i conf in my server.xml???