Dear all, any help will be welcome,
I’m working with 4 eclipse projects: A & B & C & D
In project A (EJB project), I have a bean myBean.
In project B (EJB project), I have other beans that (once deployed) access myBean in a remote way.
In project C (java project), I have a client applicaiton (swing) that also access myBean in a remote way.
The idea is: create a project D (java project) used to containe the interfaces (remote & home) of myBean that are shared by all projects.
This D project is included in the deployment:
– in project/bean A (of course)
– in project B to have the interfaces (remote & home) of myBean for lookup
– in project C (client) to have the interfaces (remote & home) of myBean for lookup
Here is my question:
How can I (using myEclipse XDoclet feature) generate the interfaces of myBean in project D rather than in A? I have tried with “@ejb.interface package” but it seems to work only within the same project.
Thanks.
❓