Hi all,
I changed my server to 4.0.5.GA and deployed my EAR to the server. After that referencing a SLSB does not work anymore:
The following code is used to reference the SLSB:
@EJB(mappedName="<EAR-name>/LanguageSession/local") protected LanguageSessionInterface languageSessionInterface;
@Stateless
@Local
(com.genloop.session.Baufi.Unterlagenmanagement.LanguageSessionInterface.class)
@SecurityDomain("xyz")
public class LanguageSession implements DomainSpecificIntf, Serializable, LanguageSessionInterface {
...
...changing vom javax.annotation.EJB to javax.ejb.EJB fixed my problem.
Best regards,
Carsten