Was there any particular reason to switch back to a sar packaging? IMO, the ear packaging fitted our purposes better - I can't think of properties or operations in the JMX console that would not be better placed in the web console instead.
More importantly, the ear is portable, at least conceptually. There is evidence in the forums that users are deploying it to every other major appserver, with some minor adaptations, of course.
There is a third, albeit more distant, advantage to the ear: the ability to resolve ejb and destination references in web.xml through the ejb-link and message-destination-link elements.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4174740#4174740
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4174740
I have a question related to PrepareTransaction, Recoveries and NonDurableMessages
We only store the Xid on Journal, if there are PersistentMessages. (which is aways my expecation).
That means, if we produce messages on JBM as part of a Distributed Transaction using only NonDurableMessages those XIDs won't be recovered in case of a server crash/restart.
Would that cause any issues on the TransactionManager?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4174731#4174731
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4174731
I have done some small changed on XID on Journal.
The Journal should be agnostic about XID IMO, The StorageManager should be the correct place to encode and decode that.
So, I have changed it a little bit. journal.prepare is now receiving an EncodingSupport, and TransactionHolder is aways holding a byte[] representing the XID. JournalStorageManager later will translate that after load is done.
I have also added a few more assertions around Journal tests to make sure the data is handled fine on prepareTransactions.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4174728#4174728
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4174728