Author | Message |
---|---|
jkerby
Posts: 12
|
Posted 21:40 Apr 10, 2013 |
Hi All, What files needed to be uploaded to CS3? Where do I put these files on CS3? Thanks. |
dthomas5
Posts: 38
|
Posted 22:39 Apr 10, 2013 |
inside of /var/lib/tomcat7/webapps/<username>/ upload everything (except for "META-INF") from your <project path>/WebContent/ directory
inside of /var/lib/tomcat7/webapps/<username>/WEB-INF/ uploade everything from yoour <project path>/WebContent/WEB-INF/ directory and <project path>/build/ directory
Servlet example: F:\CS320\Assignment0\build\classes\servlet\Home.class --goes to -- /var/lib/tomcat7/webapps/cs320stu23/WEB-INF/classes/servlet/Home.class
HelloJSTL.jsp example: F:\CS320\Assignment0\WebContent\HelloJSTL.jsp --goes to -- /var/lib/tomcat7/webapps/cs320stu23/HelloJSTL.jsp
web.xml example: F:\CS320\Assignment0\WebContent\WEB-INF\web.xml --goes to-- /var/lib/tomcat7/webapps/cs320stu23/WEB-INF/web.xml |