import javax.servlet.*;
Hi there,
I'm trying to broaden my knowledge with by playing around with Servlets and JSP. I finally got Tomcat up and running, sort of. This is just a sideline question but does anyone know why when I load my page I need to use 127.0.0.1:8080 whereas localhost:8080 does not work. I've browsed throgh the FAQ and started reading the documentation but alas I can only access the server with 127.0.0.1:8080.
Know for my actual Java related question: I'm using NetBeans to try and create my first Servlet however when I importimport javax.servlet.*;
import javax.servlet.http.*;
I receive an error stating it can not import the classes. Do I need to download these classes or packages. I'm using the Enterprise Edition and thought that this would have been included with the API? If not does anyone know why it is not currently working because I'm unable to compile my first servlet:(

