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

