I've created a servlet app using Netbeans and it works on my local machine. Now I need to deploy the app to my college class Tomcat 6 instance. The instance is set up like so: /java/tomcat/webapps/<student_id>
, where student_id
are the 30 student IDs for my class.
What exactly do I need to deploy to /java/tomcat/webapps/elvin
in order to get my servlets to work? I don't have root access to this machine and I can only write to /java/tomcat/webapps/elvin
.
Thanks.