Reputation: 18198
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
Where do I put this? So I can call it from my Java program?
Upvotes: 2
Views: 180
Reputation: 75376
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?
Upvotes: 3
Reputation: 308763
I don't know what this is, but if you want to run servlets you need a servlet/JSP engine. I'd recommend Apache Tomcat or Jetty. It will have all the JARs you need to run a web app.
Upvotes: 2