Originally posted by Bhagyashree Jayaram:
Yes you need to add the ejb-ref for the first ejb indicating a reference of the second ejb in the first ejb.
A clarification why it is so:
The EJB container make no difference between code that is "in the bean" and in other classes called by the bean. The "helper class code" could have been inlined in the bean class and the container would see no difference.
So, even if code is broken out of the bean-class to helper classes, the code is nevertheless "in the bean".
Dan