Re: Problems with EJB and JNDI-context

2000-10-14 Thread Nils Frohberg
Hi, my problem was a mistake in the ejb-ref in web.xml. (i am also using "java:comp/env/ejb/user" now) --nils -- ** * Your mouse has moved. Windows must be restarted for the change to take effect. *

Re: Problems with EJB and JNDI-context

2000-10-13 Thread Sven van 't Veer
Nils Frohberg wrote: Hi, I am facing a problem with my EJBs that i cannot solve. I try to access a EJB via a JSP page: javax.servlet.jsp.JspException: NamingException: Error instantiating web-app JNDI-context: No location specified and no suitable instance of the type 'de.tako.user'

RE: Problems with EJB and JNDI-context

2000-10-13 Thread Juan Lorandi (Chile)
Are you accesing it thru "java:comp/env/ejb/user" ??? because just accessing "ejb/user" won't work -Original Message- From: Sven van 't Veer [mailto:[EMAIL PROTECTED]] Sent: Viernes, 13 de Octubre de 2000 7:21 To: Orion-Interest Subject: Re: Problems with EJB and

Problems with EJB and JNDI-context

2000-10-12 Thread Nils Frohberg
Hi, I am facing a problem with my EJBs that i cannot solve. I try to access a EJB via a JSP page: %-- Setting up an error page --% %@ page errorPage="/errorpage.jsp" % %-- Taglibs --% %@ taglib uri="ejbtags" prefix="ejb" % ejb:useHome id="user" type="de.tako.userHome"