Hi,
Thanks for the jndi name formatting lower case support. Now I have
another problem:
When running JUnit tests with OpenEJB in embedded mode, I have many
beans that reference other beans via the @EJB mappedName property. It
does not appear that OpenEJB 3.1.1 supports this, ie I get the
following error:
WARN [OpenEJB] Injection data not found in enc:
jndiName='net.mycompany.bean.ComplexBean/myBean', target=class
net.mycompany.bean.ComplexBean/myBean
Is there an option that controls this? If not, is it be possible to
support the @EJB mappedName property for an injected bean such as:
@Stateless
public class ComplexBean implements ComplexBeanLocal {
�...@ejb(mappedName="MyStatelessBean/local")
MyStatelessBeanLocal mybean;
...
}
Where:
@Stateless
public class MyStatelessBean implements MyStatelessBeanLocal {
...
}
Thanks,
Mark