Accessing jar out of webapps/ROOT/WEB-INF/lib directory

2002-07-11 Thread Serdar BOZDA
Hi, I am currently working on a project. I want to install this project under c:\root in my computer. in c:\root\servlet\servlet.jar there are my servlets. and I want to call these servlets like the following url: http://localhost/servlet/hello (there is hello.class in

Re: Accessing jar out of webapps/ROOT/WEB-INF/lib directory

2002-07-11 Thread Jacob Kjome
The servlet spec requires that your app must look like: contextName/ (put static content here) WEB-INF/ (put web.xml here) lib/ (put your .jar libraries here) classes/ (put your standalone classes here) Also, you will need to put your contextName directory under

Accessing jar out of webapps/ROOT/WEB-INF/lib directory

2002-07-11 Thread Serdar BOZDA
Hi, I am currently working on a project. I want to install this project under c:\root in my computer. in c:\root\servlet\servlet.jar there are my servlets. and I want to call these servlets like the following url: http://localhost/servlet/hello (there is hello.class in