RE: JSP config question from a newbie

2004-01-06 Thread Shapira, Yoav
-Original Message- >From: Schalk [mailto:[EMAIL PROTECTED] >Sent: Tuesday, 30 December 2003 1:26 AM >To: 'Tomcat Users List' >Subject: RE: JSP config question from a newbie > >Steve > >First off, ensure that you have both the latest J2SE and J2EE packages >ins

RE: JSP config question from a newbie

2004-01-06 Thread Steve Carson-Rowland
December 2003 1:26 AM To: 'Tomcat Users List' Subject: RE: JSP config question from a newbie Steve First off, ensure that you have both the latest J2SE and J2EE packages installed. Then in your CLASSPATH point to both your J2SE as well as J2EE installation directories. ex. C:\j2sdk1.4\lib\t

Re: JSP config question from a newbie

2003-12-30 Thread Ben Souther
Add servlet.jar to your classpath. It can be found in TOMCAT_HOME/common/lib/ On Tuesday 30 December 2003 10:09 pm, Steve Carson-Rowland wrote: > I am just trying to get up and running with JSP, and have installed > Tomcat 5.0. I am using Sams "Teach Yourself JavaServer Pages". The code > in the

Re: JSP config question from a newbie

2003-12-30 Thread Riaan Oberholzer
You have to compile and include the j2ee.jar in the classpath, eg: javac -classpath c:/java/libs/j2ee.jar ch01_06.java (You can also use Tomcat's servlet.jar and other jars in the /common/lib directory that implement the standard J2EE features. Probably recommended if you are deploying to Tomcat)

RE: JSP config question from a newbie

2003-12-30 Thread Schalk
Steve First off, ensure that you have both the latest J2SE and J2EE packages installed. Then in your CLASSPATH point to both your J2SE as well as J2EE installation directories. ex. C:\j2sdk1.4\lib\tools.jar;c:\j2sdkee\lib You should also set your JAVA_HOME and J2EE_HOME i.e. JAVA_HOME = c:\j2sdk