Hi,
We are using JDeveloper 11g. Both a Model and ViewController project that makes use of ADF fusion and what not.
My web-xml has an ejb reference for a statfull session ejb. I have a managedbean that's declared in faces-config.
I am trying to access a EJb from inside the managed bean.
I declare @EJB (name ="LocationServicesEJB") private LocationServicesEJB locationServices;
When accessing this in a method, the locationServices is null. I dont not see any jndi type problems in the console, so I imagine that it's not even bothering to lookup.
Do I need to enable injection or something? Or do I need to define 'locationServices' as managed property in my faces-config?
Please advise. Thanx