Servlet libraries

2000-03-24 Thread Alan Westhagen
Trying to compile the example on p.714 of Nathan Meyers' book, I get errors in lines 1 and 2 import javax.servlet.*; import javax.servlet.http.*; The error message for line 1 is: SimpleServlet.java:1: Package javax.servlet not found in import. Since other correct java programs comp

Re: Servlet libraries

2000-03-24 Thread John Rousseau
On Friday Mar 24, 2000, Alan Westhagen wrote: > SimpleServlet.java:1: Package javax.servlet not found in import. You need to get servlet.jar to do servlet work. It doesn't come with the J2SE. Look under... http://java.sun.com/products/servlet/index.html -John