posted 21 years ago
My answers to your ejbHome and ejbSelect methods question:
Option A is correct, as ejbSelect methods can be called in ejbFinder methods.
Option B is incorrect, as ejbSelect methods are not exposed to the client. In fact all methods of the bean instance can be
used to access the fields of a loaded bean instance.
Option C is correct, as finder methods and home business methods are used in the home interface.
Option D may not be correct, as ejbActivate method may be used to initialize the bean instance after passivation.
I would go for answers : A and C.