Developing Java Servlet and JSP in Voyager (Spring 2001)

Thanks to Adnan to set up the Allaire's JRun server and help preparing this note.

Report JRun server problems to Adnan Ahmad.

Directory structures:
 
Directories For storing
Userhomedir\jrun\   JSP files
Userhomedir\jrun\WEB-INF\classes Servlets and other User Java classes
Userhomedir\jrun\WEB-INF\lib User Java classes and beans

URL for JSP applications:

http://dcm.uhcl.edu:8100/<userid>/jrun/<filename>

Example:

http://dcm.uhcl.edu:8100/spr01demo1/jrun/test.jsp

which will invoke:

spr01demo1\jrun\test.jsp

URL of Java Servlets:

http://dcm.uhcl.edu:8100/<userid>/jrun/servlet/<servletname>

Example:

http://dcm.uhcl.edu:8100/spr01demo1/jrun/servlet/SimpleServlet

will invoke

spr01demo1\jrun\WEB-INF\classes\SimpleServlet.class