> -----Original Message-----
> From: Andrew Rodwell [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, February 27, 2002 11:31 AM
> To: Tomcat Users List
> Subject: Unable to compile class for JSP
> 
> 
> Hi,
> 
> 
> <jsp:useBean id='lineB' scope='page' class='fwLine' type="fwLine"  />
> 
> when it is run I get the following.
> 
> org.apache.jasper.JasperException: Unable to compile class for JSP
> 
> An error occurred at line: 9 in the jsp file: /fwView.jsp
> 
> Generated servlet error:
> C:\tomcat\work\localhost\_\fwView$jsp.java:61: Class 
> org.apache.jsp.fwLine
> not found.
>                 fwLine lineB = null;
>                 ^
> 
> 
> An error occurred at line: 9 in the jsp file: /fwView.jsp
> 
> have I missed something on the setup, like in web.xml
> 

In JSP
<% @ page import="fwView" %>
or
<% @ page import="package.fwView" %>
depending on the package name of fwView.

        Randy

--
To unsubscribe:   <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>

Reply via email to