Reputation: 750
When I deploy an EJB3 project in the JBoss server.
There is no log in the Console.
I can't find the JNDI name. This is wrong.
And when I try to run an EJB Client to remote call the EJB, I get an Exception:
How can I solve this problem? Thanks!
Upvotes: 1
Views: 70
Reputation: 32437
You are trying to use EJB 3 (e.g. with @Stateless
), but JBoss 4 is too old to support this. Try a more up-to-date version, e.g. JBoss AS 7.
Upvotes: 2