Hi,
I need to have only one EJB Stateful instance of one class in my session.
For example:
@Stateful
public class StatefulBean ...
Everythime when I take instance of that StatefulBean I have different
instance, not the previous one:
@Stateless
public class StatelessBean
{
@EJB
private StatefulBean bean;
}
Can you help me?
Regards,
Miro.