Hi!
I have a problem that should be plain but I am not able to tackle….
I have two source folders called:
AppDB/ServiceSessionDB/src (session bean)
AppDB/LoggingDB/src (entity bean)
the first contains a session bean and the second contains an entity bean.
I have configured the xdoclet with myeclipse adding two standard EJB for different source folder.
The question only How can I configure the ejb-ref from the session bean to see the entity bean that is located in a different source folder?:
From my session bean:
* @ejb.ejb-ref ejb-name=”SessionLogging”
* view-type=”local”
* ref-name=”SessionLoggingLocal”
I always get the error:
[ejbdoclet] – Running XDoclet failed.
[ejbdoclet] – <<No such EJB defined: SessionLogging>>
But if I move this entity bean in the source folder of session bean that everything works fine…
So my question only How can I configure the ejb-ref from the session bean to see the entity bean that is located in a different source folder?
Thanks in advance!
topicfun