I'm stuck at compiling the example BeeServlet.java.
Here's what I've got ...
- MacBook Pro running OS X 10.5.4
- Tomcat is installed and running. I see the intro page when I point Safari to
http://localhost:8080 - The included servlet examples and JSP examples are working. For example, date is behaving as expected.
- java -version at command line returns ...
java version "1.5.0_13"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_13-b05-237)
Java HotSpot(TM) Client VM (build 1.5.0_13-119, mixed mode, sharing)
Now when I compile BeeServlet.java, the compiler complains that ...
package javax.servlet.http does not exist
The compiler error message makes me think I need j2EE - to have the correct packages - but I'm really not sure. After all, Tomcat is described as a servlet container - so why do I need additional packages? (I have search JR discussions and googled as well - and am still not sure.)
Thanks for any help.
- Dan