Hello,
I am working with Blazix application server to
test some
ejb callback events. I wrote a session bean and saw that ejbCreate() method is called by the container once, when the first client asks for the business method. I know the container calls this method whenever it decides to add some ejbs to the pool, but does not it have call ejbCreate for every new instance?
In order to test this 2 wrote 2
java client apps that are in a loop creating new instances of the beans and calling the biz methods fine. But the ejbCreate is never called. As I said before it is called once at the beginning. I am confused. Is this the default behaviour, or an application server bug?
Thank you
Murat