The logs that you posted in your latest reply did not have the error messages, so i am
just guessing here.
Looking at the code, you seem to have a self injection (of PeopleSoftMonitorDaoLocal)
which is not supported in JBoss EJB3
https://jira.jboss.org/jira/browse/EJBTHREE-1603:
| public abstract class BasePeopleSoftDao extends AbstractDao {
|
| ... // self injection
| @EJB
| private PeopleSoftMonitorDaoLocal _monitorDao
| ...
| }
|
| @Service
| @Local(PeopleSoftMonitorDaoLocal.class)
| public class PeopleSoftMonitorDaoEjb extends BasePeopleSoftDao implements
| PeopleSoftMonitorDaoLocal {
| ...
|
|
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4265883#...
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&a...