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

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 -

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

2003-06-02 Thread Jonathan Michael Nowacki
? 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. Unfortunitally, it doesn't seem to work. This is my error

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

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

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.*; ^

Re: Compilation errors of Servlet.

2003-05-31 Thread Jonathan Michael Nowacki
/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. Taking a guess here