anonymous wrote :
| 09:32:56,169 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global
JNDI:
|
| AppFacadeImpl - EJB3.x Default Remote Business Interface
| AppFacadeImpl/remote-com.powerlogic.app.facade.IAppFacadeRemote - EJB3.x Remote
Business Interface
| AppFacadeImpl/local - EJB3.x Default Local Business Interface
| AppFacadeImpl/local-com.powerlogic.app.facade.IAppFacade - EJB3.x Local Business
Interface
This is related to this
https://jira.jboss.org/jira/browse/EJBTHREE-1545
I would suggest that you
1) remove the mappedName from the bean:
@Stateless(mappedName="AppFacadeImpl")
The default business remote interface will then be bound at AppFacadeImpl/remote.
2) Or provide some different mappedName which does not match the bean name:
@Stateless(mappedName="MyAppFacadeImpl")
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4195580#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...