What Oracle is best?

2003-06-09 Thread Jonathan Michael Nowacki
Just wondering what kind of oracle programs do I need to get Tomcat to access an SQL database. I have servlets already written that work on another Sun OS machine that I still have access to. Is there a way I can query the OS to find out what versions of oracle are installed? The RPM command obv

Re: faulty fix for (javax.servlet does not exist)

2003-06-02 Thread Jonathan Michael Nowacki
Holy cow!!! It worked. Thank you very much Kwok Peng Tuck It's still puzzles me why javac -classpath /var/tomcat4/common/lib/servlet.jar MultiServlet.java works yet javac doesn't when I set my class path variable. $ echo $CLASSPATH /var/tomcat4/common/lib/servlet.jar $ javac MultiServlet.java

Re: faulty fix for (javax.servlet does not exist)

2003-06-02 Thread Jonathan Michael Nowacki
s > /var/tomcat4/common/lib/servlet.jar ? > > Regards, > Jason > > > On Mon, 2 Jun 2003 00:00, Jonathan Michael Nowacki wrote: > > This website http://www.sitepoint.com/article/509/3 says all I have to do > > is put servlet.jar in my classpath to solve my problems.

Re: faulty fix for (javax.servlet does not exist)

2003-06-02 Thread Jonathan Michael Nowacki
This website http://www.sitepoint.com/article/509/3 says all I have to do is put servlet.jar in my classpath to solve my problems. Unfortunitally, it doesn't seem to work. > >This is my error >

faulty fix for (javax.servlet does not exist)

2003-06-01 Thread Jonathan Michael Nowacki
This website http://www.sitepoint.com/article/509/3 says all I have to do is put servlet.jar in my classpath to solve my problems. Unfortunitally, it doesn't seem to work. This is my path -- $ echo $CLASSPATH /usr/java/j2sdkee1.4/lib/*.jar:/usr/java/j2sdk1.4.1_02/lib/*.jar:/var/t

Re: Compilation errors of Servlet.

2003-05-31 Thread Jonathan Michael Nowacki
=/var/tomcat4/common/lib/servlet.jar CLASSPATH=/var/tomcat4/common/lib/ On Sat, 31 May 2003, Jason Bainbridge wrote: > On Sat, 31 May 2003 07:03, Jonathan Michael Nowacki wrote: > > When trying to compile a servlet that works on another installation of > > tomcat I get this error.

Compilation errors of Servlet.

2003-05-31 Thread Jonathan Michael Nowacki
When trying to compile a servlet that works on another installation of tomcat I get this error. javac MultiServlet.java MultiServlet.java:1: package javax.servlet does not exist import javax.servlet.*; ^ MultiServlet.j