What happened to the javax.servlet package after 1.4?

I am reading the java tutorials and one of the examples requires the javax.servlet package that no longer exists. Where should I direct the program for the classes that were once in that package?
[202 byte] By [Galm_1a] at [2007-11-27 5:01:45]
# 1

> I am reading the java tutorials and one of the

> examples requires the javax.servlet package that no

> longer exists.

It still exists.

http://java.sun.com/javaee/5/docs/api/javax/servlet/package-frame.html

It's in a variety of libraries; j2ee.jar, servlet.jar, servlet-api.jar, etc.

~

yawmarka at 2007-7-12 10:19:21 > top of Java-index,Java Essentials,New To Java...
# 2

That's odd. Why am I not seeing it when I look at the 1.6 API and why am I getting these errors...

ReverseServlet.java:1: package javax.servlet does not exist

import javax.servlet.*;

^

ReverseServlet.java:2: package javax.servlet.http does not exist

import javax.servlet.http.*;

^

.

The link you provided shows it and I can go to the page but when I go here

http://java.sun.com/javase/6/docs/api/

It is not there...

Galm_1a at 2007-7-12 10:19:21 > top of Java-index,Java Essentials,New To Java...
# 3
> The link you provided shows it and I can go to the> page but when I go here> http://java.sun.com/javase/6/docs/api/> It is not there...It's not in Java SE. It's in Java EE.~
yawmarka at 2007-7-12 10:19:21 > top of Java-index,Java Essentials,New To Java...
# 4
Never mind. It is located in the EE platform. I never understood what the difference was from SE and EE but a quick Google search enlightened me. I have always used the SE.
Galm_1a at 2007-7-12 10:19:21 > top of Java-index,Java Essentials,New To Java...
# 5
> Never mind. It is located in the EE platform.Notice the link in reply #1.~
yawmarka at 2007-7-12 10:19:21 > top of Java-index,Java Essentials,New To Java...
# 6
yeah thats how I figured it out.I feel stupid...
Galm_1a at 2007-7-12 10:19:21 > top of Java-index,Java Essentials,New To Java...
# 7
> yeah thats how I figured it out.> > I feel stupid...No need to feel stupid. You live and learn. :o)~
yawmarka at 2007-7-12 10:19:21 > top of Java-index,Java Essentials,New To Java...