I have compiled 'myBean' into a 'package' and in the
JSP page I import the package with 

<%@ page import="package.*" %>
<jsp:useBean id="myid" class="myBean" />

The bean is located in 
<tomcat-install>\webapps\ROOT\WEB-INF\classes\package
directory and the JSP page is located in the ROOT
directory.

The above declaration doesn't work but the following
works

<jsp:useBean id="myid" class="package.myBean" />

WHY???


__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

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

Reply via email to