javax directory

2002-08-27 Thread Reis, Tom
What is the javax directory. I know there is one in the Tomcat-docs but I thought there class files and not just html files. The reason I am asking this question is I have a java program that has the following code: import javax.servlet.*; import javax.servlet.http.HttpServlet; I receive errors

Re: javax directory

2002-08-27 Thread Randall R Schulz
extensions are defined. Either that, or you have the necessary JAR files, but they're not in your class-path (CLASSPATH environment or -classpath option) when you compile. Randall Schulz Mountain View, CA USA At 09:19 2002-08-27, Reis, Tom wrote: What is the javax directory. I know there is one

Re: javax directory

2002-08-27 Thread Michael E. Locasto
servlet.jar, wherever it is located check out the tomcat docs on building web apps with Ant: http://jakarta.apache.org/tomcat/tomcat-4.1-doc/appdev/source.html The javax directory in the CATALINA_HOME/webapps/tomcat-docs/servletapi directory is the Javadoc API for the javax.servlet packages

RE: javax directory

2002-08-26 Thread Reis, Tom
Would that in the classpath for java or for the Tomcat. -Original Message- From: Goverdhan Nookala [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 22, 2002 1:23 PM To: 'Tomcat Users List' Subject: RE: javax directory you need to set the servlet.jar or j2ee.jar file in classpath

RE: javax directory

2002-08-26 Thread jeff . guttadauro
: Subject: RE: javax directory 08/26/02 08:52 AM

RE: javax directory

2002-08-26 Thread Reis, Tom
I do have the servlet.jar set in the classpath and I still have the same problem. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, August 26, 2002 8:56 AM To: Tomcat Users List Subject: RE: javax directory The classpath used when you do your Java

Re: javax directory

2002-08-26 Thread Irina Lishchenko
On Thursday 22 August 2002 20:21, you wrote: I am trying to compile a application that uses import javax.servlet.*; import javax.servlet.http.HttpServlet; in the code. When I attempt to compile this code I receive errors stating that it could not find these symbols. I noticed that they are