Back to bug 1002518

Who When What Removed Added
Vladimir Rastseluev 2013-09-03 15:19:18 UTC Assignee jbertram jmesnil
Vladimir Rastseluev 2013-10-24 06:22:12 UTC CC jkudrnac
Miroslav Novak 2013-11-12 09:39:17 UTC CC mnovak
Miroslav Novak 2013-11-12 10:54:50 UTC Status NEW VERIFIED
mark yarborough 2013-12-15 17:02:21 UTC Status VERIFIED CLOSED
Resolution --- CURRENTRELEASE
Last Closed 2013-12-15 12:02:21 UTC
John Skeoch 2014-01-13 00:22:35 UTC CC pslavice
Miroslav Novak 2014-03-25 15:40:57 UTC Status CLOSED ASSIGNED
Resolution CURRENTRELEASE ---
Keywords Reopened
Jeff Mesnil 2014-03-31 13:39:16 UTC Depends On 1082617
Miroslav Novak 2014-05-19 08:30:22 UTC Component doc-Release_Notes
Doc Text "When a session is created in a transaction context like:
connection.createSession(false,0);

an IllegalArgumentException occurs. Root cause is that generic RA does not ignore parameters passed to createSession where first sets session not transacted and second to mode transacted session (0). Workaround is to create transacted session:
connection.createSession(true,0);
Scott Mumford 2014-05-19 22:41:20 UTC Component doc-Release_Notes
CC smumford
Assignee jmesnil jpederse
Flags needinfo?(jpederse)
Jesper Pedersen 2014-05-20 11:42:23 UTC Assignee jpederse jmesnil
Ondrej Chaloupka 2014-05-22 07:10:21 UTC CC ochaloup
Miroslav Novak 2014-05-26 10:41:08 UTC Component doc-Release_Notes
Jeff Mesnil 2014-07-04 13:21:54 UTC Status ASSIGNED CLOSED
Resolution --- WONTFIX
Last Closed 2013-12-15 12:02:21 UTC 2014-07-04 09:21:54 UTC
Scott Mumford 2014-07-25 00:55:08 UTC Target Release --- EAP 6.3.0
Doc Text "When a session is created in a transaction context like:
connection.createSession(false,0);

an IllegalArgumentException occurs. Root cause is that generic RA does not ignore parameters passed to createSession where first sets session not transacted and second to mode transacted session (0). Workaround is to create transacted session:
connection.createSession(true,0);
In this release of JBoss EAP 6, when a session is created in a transaction context like:
`connection.createSession(false,0);` an `IllegalArgumentException` occurs.

This is because generic RA does not ignore parameters passed to createSession where first sets session not transacted and second to mode transacted session (0).

To avoid this issue, create a transacted session:
`connection.createSession(true,0);`.
Doc Type Bug Fix Known Issue
Flags needinfo?(jpederse) needinfo-
Tom WELLS 2014-08-14 14:56:30 UTC Component doc-Release_Notes Documentation
CC twells

Back to bug 1002518