Hello,

I'm using JavaWebServer2.0

I'm trying to use JSP with java beans:

the jsp file is in /public_html and contains:

<jsp:useBean id="taxutil" scope="session" class="TaxUtil" />

<%
 taxutil.processRequest(request);
%>


I put my class file (taxUtil.class) into /classes



when I execute my jsp page, it doesn't find the class:

D:\JavaWebServer2.0\tmpdir\default\pagecompile\jsp\_taxcode.java:72: Class
pagecompile.jsp.TaxUtil not found in type declaration.
                TaxUtil taxutil = null;


On another hand, the examples from sun in /classes/sunexamples/beans work!

I think it's a CLASSPATH problem. By default /classes is supposed to be in
the CLASSPATH

Anybody knows what's going in

thanks

Patrice

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to