roldino Harris

Greenhorn
+ Follow
since Jul 17, 2008
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 roldino Harris

I thought Dojo was an Ajax Framework..
13 years ago
Hey Tim,

I think most of what you wrote are correct. Except this :


APPLICATION-MANAGED RESOURCE-LOCAL ENTITYMANAGER
- Uses EntityTransaction for transaction management
- Created with @PersistenceUnit



should be

APPLICATION-MANAGED RESOURCE-LOCAL ENTITYMANAGER
- Uses EntityTransaction for transaction management
- Created with EntityManagerFactory

and to this

USERTRANSACTION
- Only to be used in session beans (or MDB's) with BMT.
- When to use EntityTransaction of UserTransaction? When a bean is CMT, we should use EntityTransaction and when it's BMT, we should use UserTransaction. Is this statement correct??



Here is what I think:

We have two types of application-managed Entity Manager (EntityManager created with EntityManagerFactory):
- one with EntityTransaction. we use this type when there is no JTA (No Dependency injection allow)
- one with UserTransaction when there is JTA allowed. In this case it is a BMT Bean


I hope this help






I think most of the assertments are correct. Except this :


APPLICATION-MANAGED RESOURCE-LOCAL ENTITYMANAGER
- Uses EntityTransaction for transaction management
- Created with @PersistenceUnit



should be

APPLICATION-MANAGED RESOURCE-LOCAL ENTITYMANAGER
- Uses EntityTransaction for transaction management
- Created with EntityManagerFactory

and to this

USERTRANSACTION
- Only to be used in session beans (or MDB's) with BMT.
- When to use EntityTransaction of UserTransaction? When a bean is CMT, we should use EntityTransaction and when it's BMT, we should use UserTransaction. Is this statement correct??



Here is what I think:

We have two types of application-managed Entity Manager (EntityManager created with EntityManagerFactory):
- one with EntityTransaction. we use this type when there is no JTA (No Dependency injection allow)
- one with UserTransaction when there is JTA allowed. In this case it is a BMT Bean


I hope this help






Hi all ,
Can some one tel me how to access to a web service session with axis2. basically i want to be able to use an lost session from the client side. My scope is transportsession.
thanks in advance.
zaza
15 years ago