Hello,

I am converting a system from Weblogic 6.1(sp3) to JBoss 3.2.1.
I got a strange phenomenon about BMP Entity Bean.

The process is like followings;

1. Create a entity bean <E1> by calling home.create();
2. Set Object <O1> to <E1> by calling E1.setXXX(O1);
3. Get entity bean <E1> by calling home.findByPrimaryKey(key).
4. Set another Object <O2> to <E1> by calling E.setXXX(O2);

In step 1, ejbCreate() insert a record to <tableA>.
In step 2, setXXX(O1) insert a record to <tableB>.
In step 4, setXXX(O3) update a record that was inserted by step2.

Here is the problem.
In stem 3(or after step3), ejbStore() of E1 is never called.

There is any case or configuration that ejbStre() is not called by JBoss?
Maybe I did wrong configuration settings but I could not find.

Any suggestions are welcome.

Regard,
Taka




-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to