dhananjayan karnam

Greenhorn
+ Follow
since May 23, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by dhananjayan karnam

I have to create the TXDataSource whatever available in weblogic, in JBOSS. I have to create the normal datasource as well as TxDataSource in JBOSS.
Could any one please help me to solve this problem?
Thanks in advance
20 years ago
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
20 years ago
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