On Thu, 13 May 1999, Jihad J. Richa wrote:
> Hello,
>
> I have tried to compile the JServSSI using the comand in the installation
> file: javac -d . *.java, but I am getting the following errors: (Do you
> know what the problem is ?) Thanks.
Your problem is your classpath.
This is a standard java compiler error which indicates it was unable to
find the classes indicated. In this case, it can't find 'javax.servlet.*'
or 'javax.servlet.http.*". Those classes are the JSDK; so you should add
the JSDK to your classpath.
But it also says it can't find org.apache.java.util.*, which means you
don't have the JServSSI source directory in your classpath. You should
add that as well (ie. something like, in tcsh 'setenv CLASSPATH
${CLASSPATH}:/home/me/jservssi/src/java', or wherever the Java source is
in JServSSI).
hth --
Ed
----------------------------------------------------------------
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
READ THE FAQ!!!! <http://java.apache.org/faq/>
Archives and Other: <http://java.apache.org/main/mail.html/>
Problems?: [EMAIL PROTECTED]