Joel Cordonnier wrote:
> 
> Hi!
> 
> I have to port an application that run on JRUN to
> embedded JOBSS-TOMCAT3.2.1
> 
> in my JSP pages i have the following
> 
> <%@page
> import="de.hyphony.application.ebtf.viewValue.loginPortlet.IVV_vd_login_input"%>
> <jsp:useBean id="view" class="IVV_vd_login_input"
> scope="request"/>
> ...
> 
> IVV_vd_login_input is an INTERFACE !!!!!!!!!!!
> 
> JRUN compile the JSP page without problem, and TOMCAT
> NOT (it's an interface)
> IS this portable ?
> 
> Thanks
> Joel

In your <jsp:useBean tag you MUST give the complete package name
with the class= attribute. JRun does not require this but Tomcat
does. I think the API calls for the complete package name, so
JRun is not compliant.

-- 
WBB - [EMAIL PROTECTED]
Java Cert mock exams http://www.lanw.com/java/javacert/
Author of Java Developer's Guide to Servlets and JSP 
ISBN 0-7821-2809-2



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

Reply via email to