A J2EE Problem

I have tried j2ee1.3.1. I followed the tutorial, deployed the first example--the converter. I have no problem to run the ConverterClient from the command line. But when I tried to run the jsp client, it gave me the following error:

*****************************************

org.apache.jasper.JasperException:

Unable to compile class for JSPd:

xxx\web\converter\_0002findex_jsp.java:18: Class org.apache.jsp.Converter not found.

private Converter converter = null;

^

*****************************************

Apparantly tomcat doesn't know where the Converter.class is, it thought it is part of org.apache.jsp package.

I think if I put all the needed .class files into the same directory as the _0002findex_jsp.java, it should work. But it is not the way it should be.

Does anybody know how to fix this problem?

Thanks in advance

[911 byte] By [tengj6] at [2007-9-26 2:10:47]
# 1
hihave you registered the package containing the Converter class as your system CLASSPATH variable?
eugene1234 at 2007-6-29 9:02:06 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 2
Thanks for the reply. How do I do that? just include the Coverter class in my classpath variable of Windows 2000? like followingclasspath=%classpath%;c:\j2ee\example\build\converterOr I should do something else to register?
tengj6 at 2007-6-29 9:02:06 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...