Hello,
 
I implemented some self made entity beans and session beans, all using container-managed-persistence.
The problem i have is when i create an instance of an entitybean in a sessionbean,
and change some fields of the entitybean after the creation, all in sessionbean, de entitybean has not been
updated in my database...
 
Like i understood, the container invokes at least one ejbStore between the last business method on the instance and the ejbPassivate method.
But it did nothing...
 
What is the problem here...
 
Is it possible to call the ejbStore() method direct (container-managed-persistence)?
 
A small question, do i have to pass on parameters in my deployment descriptor for the business methods.
Now, i did it without parameters
 
{
    Method = setCustomerName;
    TransactionAttribute = TX_MANDATORY;
};
 
Thnx
 
Jochen Vastmans
 

Reply via email to