anonymous wrote : @EJB(name="NexusEvents/NexusEventsServiceImpl/local") | NexusEventsService nexusEventsService;
Is NexusEvents/NexusEventsServiceImpl/local, the JNDI name of your NexusEventsService? If yes, then try this: @EJB(mappedName="NexusEvents/NexusEventsServiceImpl/local") | NexusEventsService nexusEventsService; Note the use of mappedName in the injection. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4163804#4163804 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4163804 _______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
