On Jun 26, 2009, at 8:15 AM, pc1660 wrote:


Hello, i am unable to run JSF Injection Support example
(http://openejb.apache.org/examples.html).
[...]
Caused by:
javax.naming.NameNotFoundException - Name CalculatorImplLocal is not bound
in this Context

I found that as well about a day after the release went out. We've got it fixed for the next release. If you edit the CalculatorBean like so, all should work fine.

public class CalculatorBean {
-       @EJB(name="CalculatorImplLocal")
+       @EJB
        Calculator calculator;
        private double x;
        private double y;

Definitely let us know if you have any issues.

--
David

Reply via email to