I have this EAR file,
web.war
ejb.jar
lib/ejb.client.jar
In my EJB I have beans I want to annotate as @Local ...
problem is: if I use @Local, the classes od web.war cannot find the
reference to the EJBs.. but if I keep the same code and packaging
structure and just chance the annotation to @Remote, it works :(
how can I use @Local to access EJBs between components in a same EAR ?
* this is an old question but somehow I never got the conclusion about
the problem.....