| Author |
javax.transaction.Transaction Rolledback Exception: CORBA
|
murli sahoo
Greenhorn
Joined: Feb 25, 2006
Posts: 2
|
|
Hi All, Can anyone tell me what is the reason for the below error and how it can be solved..... javax.transaction.TransactionRolledbackException: CORBA TRANSACTION_ROLLEDBACK 0x0 No; nested exception is: org.omg.CORBA.TRANSACTION_ROLLEDBACK: javax.transaction.TransactionRolledbackException: ; nested exception is: java.lang.OutOfMemoryError vmcid: 0x0 minor code: 0 completed: No
|
 |
Michael Ernest
High Plains Drifter
Sheriff
Joined: Oct 25, 2000
Posts: 7292
|
|
|
Moving this to Distributed Java.
|
Make visible what, without you, might perhaps never have been seen.
- Robert Bresson
|
 |
Nathan Pruett
Bartender
Joined: Oct 18, 2000
Posts: 4121
|
|
|
The transaction rolled back because an error was thrown during the transaction. This error was - java.lang.OutOfMemoryError. Something is causing your JVM to run out of memory. This could be due to a problem with implementation - Java's version of "memory leaks" - objects not getting de-referenced properly so they are never garbage collected. Or it could be that the program is just using a lot of memory for legitimate reasons - you may have to rethink some algorithms or processes you are using (i.e. - if you're processing a large amount of data at a time, you may need to "chunk" the data to make better use of resources), or you may want to increase the amount of memory available to the JVM using the -Xmx or -Xms command line parameters.
|
-Nate
Write once, run anywhere, because there's nowhere to hide! - /. A.C.
|
 |
 |
|
|
subject: javax.transaction.Transaction Rolledback Exception: CORBA
|
|
|