| Author |
ejbLoad() is not called??????in JBOSS and WebSphere?????
|
dhananjayan karnam
Greenhorn
Joined: May 23, 2003
Posts: 3
|
|
Hi we are using JBOSS3.0 and we have the following requirement. This is the architecture we are using. From JSP we are calling session bean and from there we are calling entity bean(BMP). For both the entity bean and session bean method we are setting the transaction-attribute as 'Required'. The session bean method is like this public void createMethod() { // getting initial context code EJBHome home = context.lookup() // entity bean EJBRemote remote = home.create() // here actually it has to call the ejbStore() method of // entity bean, that is one requirement // here it has to call ejbLoad() method b'z getValue() is // a business method S.O.P(remote.getValue()); // here it has to call ejbStore() method b'z getValue() is // a business method } but it is not calling the ejbLoad method(). I modified standardjboss.xml commit option to B and C . If both are in the same transaction it is not calling the ejbLoad() method at all. If session bean is in required, and entity bean is in requiresNew stage then it is calling. But entire method we want to be in the same transaction, we are not able(server) to call the ejbLoad() method, so whatever value (bean values) we are setting in ejbcreate() method we are not getting reflected in the session bean when calling business method call. Can any one please tell me why this is happening and how to solve this problem. Even i am facing problem in case of websphere., But the same thing is working in weblogic??? can anyone please help, the requirement is urgent.... Thanks in advance dhananjayan
|
 |
Ajith Kallambella
Sheriff
Joined: Mar 17, 2000
Posts: 5782
|
|
|
Moving discussion to JBoss forum...
|
Open Group Certified Distinguished IT Architect. Open Group Certified Master IT Architect. Sun Certified Architect (SCEA).
|
 |
 |
|
|
subject: ejbLoad() is not called??????in JBOSS and WebSphere?????
|
|
|