Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Testing EJB3 using glassfish embeddable container, but this call seems to return null all the time, any ideas?

//from JUnit 

EJBContainer ejc = javax.ejb.embeddable.EJBContainer.createEJBContainer();
share|improve this question
Make sure you are following all prereq: download.oracle.com/docs/cd/E19798-01/821-1754/gjlde/index.html – Usman Saleem Sep 21 '11 at 22:42
If the method returned null, it would also have thrown an exception with a stack trace. Without posting that, you'll get answers that will only guess what your problem is. I would suggest posting code that will reproduce this issue, in addition to the stack trace, because that method call always works in my workstation. – Vineet Reynolds Sep 22 '11 at 4:43

2 Answers

Have a look at Jetty

share|improve this answer
Jetty support EJB3? – Usman Saleem Sep 21 '11 at 22:40
up vote 0 down vote accepted

Got it to work using openejb. Here is how to get it to start openejb container for testing. Within your JUnit code, add the following (Ideally, in setUpClass)

Properties props = new Properties();
        props.setProperty(Context.INITIAL_CONTEXT_FACTORY,"org.apache.openejb.client.LocalInitialContextFactory");
        InitialContext context = new InitialContext(props);
        MyEJB b = (MyEJB) context.lookup("MyEJBLocalBean");

You can now call business methods on your MyEJB object b.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.