On Mon, 5 Feb 2001 [EMAIL PROTECTED] wrote:

> Yo,
> I have developed a web-app on a linux machine, and because of a problem
> with IE, I had to deploy that app on a win32 machine.
> So I installed tomcat-3.2.1 on a win98 SE machine.
> 
> after fixing the 'out of environment stuff' and a server.xml edit,
> I got it running. 
> 
> The problem is that I keep getting messages like this:
> 
> org.apache.jasper.JasperException: Unable to compile class for
> JSPerror: File ...\WEB-INF\classes\GENERAL\ParameterContainer.class does
> not contain type GENERAL.ParameterContainer as expected but class
> general.ParameterContainer. Please remove the file, or make sure it
> appears in the correct subdirectory.
> 
> The problem is that I have 
> a directory JSP\GENERAL\index.jsp containing the jsp code.
> and a directory WEB-INF\classes\general\ParameterContainer.class 

REMARK: the .java file states clearly the classname as
package general;
public class ParameterContainer{ ...}

so the fully qualified name of the class is general.ParameterContainer and
not (like Jasper Thinks) GENERAL.ParameterContainer.

Maybe the used java compiler (the vm is sun's 1.3) has something to do
with it.

> 
> somehow this confuses jasper. The application worked correct onder various
> linux machines.
> 
> So How do I fix this on Win32??
> 
> TIA,
> 
> Sloot.
> 
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, email: [EMAIL PROTECTED]
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to