[JBoss-user] Jsp EJB's

2001-07-10 Thread Achilleus Mantzios
Is there a quick and dirty HOWTO of how can we run jsp's that access EJB's ??? by Simply %@ page import="org.jboss.docs.interest.Interest" % %@ page import="org.jboss.docs.interest.InterestHome" % jasper produces : Class org.jboss.docs.interest.Interest not found in import. Where can we set

Re: [JBoss-user] Jsp EJB's

2001-07-10 Thread Allen Fogleson
Accessing EJB's directly in JSP is strongly discouraged, however if you are going to do this in a JSP you will have to include the home and remote classes in the WEB-INF/lib or WEB-INF/classes directory for them to be found. I would actually suggest using a java bean to encapsulate the calls