I just downloaded from: http://java.sun.com/products/servlet/download.html the Java(TM) Servlet API Specification Interface Classes 2.3
Inside this zip file I have the folder
- javax (folder)
- servlet (folder)
- http (folder)
- bunch of class files
Where do I put this? So I can call it from my Java program?
The servlet-api.jar goes unmodified on your classpath while you develop your application. The target deployment place (inside Tomcat or a full fledged Java EE server) provides its own version to your program so the development one you downloaded should not be part of what you deploy to the final location.
What is your deployment platform?