[jboss-user] [EJB/JBoss] - Re: What is wrong with my local ejb JNDI lookup code (or the

2008-01-13 Thread sairndain
Apparently, jboss.xml, jboss-web.xml, jboss-application.xml are not required... at least in this simple "enterprise" project I created. What is not clear is whether the jboss*.xml configuration files allow JBoss to provide some other benefit -- other than short JNDI names. Anyway this is the

[jboss-user] [EJB/JBoss] - Re: What is wrong with my local ejb JNDI lookup code (or the

2008-01-11 Thread sairndain
Well... It appears that the only way to get this to work is to configure the jboss.xml configuration file... I configured the jboss.xml file similarly to this: | | | | JjjEJBBean | ejb/JjjEJBRemoteHome | ejb/JjjEJBLocalHome | | | | ...an

[jboss-user] [EJB/JBoss] - Re: An EJB module must contain one or more enterprise beans.

2008-01-11 Thread sairndain
I think all you have to do is create an EJB (e.g., session bean) after you create the module And the message will no longer appear. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4119208#4119208 Reply to the post : http://www.jboss.com/index.html?module=b

[jboss-user] [EJB/JBoss] - What is wrong with my local ejb JNDI lookup code (or the ejb

2008-01-10 Thread sairndain
if needed] ***ddd.ejb.DddEJBBean*** package ddd.ejb; | | import javax.ejb.SessionBean; | import javax.ejb.SessionContext; | | /** | * | * @author sairndain | */ | public class DddEJBBean implements SessionBean { | | private SessionContext context; | | /