YOUR FEEDBACK
NGASI Releases AppServer Manager 8.1
Dave Jenkins wrote: The remote server management is a welcomed added feature...
SOA World Conference
Virtualization Conference
$200 Savings Expire May 16, 2008... – Register Today!

2007 West
GOLD SPONSORS:
Active Endpoints
Your SOA Needs BPEL for Orchestration
BEA
Virtualized SOA: Adaptive Infrastructure for Demanding Applications
Nexaweb
Overcoming Bandwidth Challenges with Nexaweb
TIBCO
What is Service Virtualization?
SILVER SPONSORS:
WSO2
Using Web Services Technologies and FOSS Solutions
Click For 2007 East
Event Webcasts

2008 East
PLATINUM SPONSORS:
Appcelerator
Think Fast: Accelerate AJAX Development with Appcelerator
GOLD SPONSORS:
DreamFace Interactive
The Ultimate Framework for Creating Personalized Web 2.0 Mashups
ICEsoft
AJAX and Social Computing for the Enterprise
Kaazing
Enterprise Comet: Real–Time, Real–Time, or Real–Time Web 2.0?
Nexaweb
Now Playing: Desktop Apps in the Browser!
Sun
jMaki as an AJAX Mashup Framework
POWER PANELS:
The Business Value
of RIAs
What Lies Beyond AJAX?
KEYNOTES:
Douglas Crockford
Can We Fix the Web?
Anthony Franco
2008: The Year of the RIA
Click For 2007 Event Webcasts

SYS-CON.TV
TOP THREE LINKS YOU MUST CLICK ON


Transactions: How Distributed Are Yours?
Talk to your peers

Digg This!

Another discussion based on a weblogic.developer.interest.transaction posting this month. It's a newsgroup that always proves to be a good source of information for the world at large when it comes to transactional behavior (and a good source of inspiration for me when the article time of the month rolls around again).

This particular posting is a great illustration of how an apparently simple assumption can pitch you into the bowels of the infrastructure, if you're not carefully guided by the architecture you're building against, and the possibilities it offers. The original posting ran:

We have to use distributed transactions between an XADataSource configured at the Web tier level in Tomcat 4.1.27 and an XADataSource configured in WebLogic Server 8.1. As a proof of concept, I built a small servlet sample that uses the XADataSource in Tomcat and uses the transaction manager of WebLogic.

When enlisting the XAResource with the javax.transaction.Transaction object, I keep receiving the following exception:

javax.transaction.SystemException: Not implemented at
weblogic.corba.j2ee.transaction.TransactionManagerImpl.enlistResource
(TransactionManagerImpl.java:370)
at com.myco.jta.TestServlet.addSubscription(TestServlet.java:103)
at com.myco.jta.TestServlet.doGet(TestServlet.java:46)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)

We use XAPool from ObjectWeb as the XADataSource implementation. I'd like to know if we are using JTA properly and if we are missing a configuration of some sort at the WebLogic level.

On the face of it, what could be simpler: a distributed architecture, and we want distributed transactions so let's start coding... But these exceptions quickly put a stop to that, and give pause for thought... Let's think this through.

A first observation, at a high level (and at a tangent to the whole point of this article), is the implicit physical splitting of tiers in this posting. Okay, there may be very good reasons in this case why Tomcat is used for the JSP/servlet logic - maybe it's already in production and is being extended - but WebLogic has a perfectly good servlet/JSP capability. It is amazing how many people decide that the fact that Sun describes a Web tier and an EJB tier means that these tiers must be physically separate. Even people using WebLogic for both the Web tier and the EJB tier often decide that they should deploy different WebLogic instances for both. This is not necessarily the case. Calling between processes is costly and a source of complexity in development, configuration management, and production maintenance. Yes, you can make the tiers physically separate, but even if all the tiers are deployed in a single WebLogic instance they are no less logically distinct! Sorry about that rant, this is a subject that really gets my goat. Just be thankful that I fought the temptation to type the whole of this paragraph in bold caps!

That Really Gets My Goat!
So, Ommmmm... Calm, calm, calm... and back to the plot.

At the high level, transactions flow around our J2EE system quite transparently; you start them, make calls, commit them, and take it for granted that the transaction context flowed around with your calls, and the commit processing touched all the resources you ended up using. This sounds like magic, and - of course - like everything else in the world, it isn't. There is a rational explanation. To find it, you just need to look beneath the J2EE surface you're coding to. What happened under the covers is that every time you made a call, the runtime discovered a Transaction object associated with your thread. This discovery prompted the runtime to piggyback the data about the transaction with the request. The piggybacked transaction information has, in turn, caused the infrastructure on the receiving end to do the "right thing" in terms of associating a transaction with its thread of control, and piggybacked data about the resources that got touched to make sure all the bits of transaction know about each other, so when the time comes the transaction co-ordinator can wander by, tell all the resources (which it has collected a list of) to commit, and life is good. All this apparent magic is wonderful, but it does imply a pretty close coupling between the application server's runtime infrastructure and the transaction manager, and this implication is not for nothing - the two are pretty inextricably tied together. So when you start talking about the scenario laid out in the newsgroup, where two different infrastructure implementations are involved, things are going to get a bit hairy if you carry on trying to make the simple assumption that transactions will flow between the containers and "just work" when it comes to commit time.

What it boils down to is that BEA WebLogic cannot make any assumptions about the nature of a client that is calling it but, as I discussed way back in November 2002 (WLDJ, Vol. 1, issue 11), it tries to smooth over the cracks by allowing a client to demarcate transactions whose completion will be delegated to a server-side transaction manager. A Tomcat client is no exception to that; as far as WebLogic is concerned, it is every bit as incapable as an applet.

What's Needed Is a Peer Relationship
What's needed to flow transactions between implementations in the way that the original poster wanted is a peer relationship between them, not a client/server one. If the two containers can be confident that each can look after itself in terms of transaction logging and recovery, then all that is needed is a shared understanding of how the transactions in one environment map on to those in the other. One way of doing this is via RMI/IIOP. If the containers are both speaking that protocol (as they are mandated to be able to do by J2EE 1.3) then the CORBA OTS specification provides a standard mechanism and interfaces for the transactions to flow through. Each container can handle its own internal implementation, with OTS providing a gateway between them. Internally to WebLogic, this gateway is implemented via a concept called an "Interposed Transaction Manager" - if WebLogic needs to import a transaction via OTS, that actually entails listening for "prepare", "commit", and "rollback" instructions from the remote system and responding appropriately to them. The BEA WebLogic transaction manager simply sits between these instructions and the actual resources participating in the transaction on the WebLogic side - it is interposed between the TM that controls the transaction and the local resources that it manages. If you think about it, responding to begin/prepare/commit/abort commands is exactly what any resource manager does through the xa interface. Wouldn't it be a neat trick if an xa interface could be exposed to WebLogic's transaction manager; then any foreign transaction manager could propagate transactions into WebLogic via xa, as if it were a database or any other xa resource, irrespective of support for any given network protocol.

The good news is that WebLogic's transaction manager offers just such a capability via the getServerInterposedTransactionManager and getClientInterposedTransactionManager methods provided by the weblogic.transaction.TxHelper. These methods give you the ability to get pretty exotic with the propagation of transactions into and out of WebLogic, to help you stitch together the end-to-end propagation of transactions.

As for the bad news... Well, until Tomcat grows a transaction manager of its own as a peer to WebLogic's, the scenario we started from just isn't going to work. Not that that's necessarily a bad thing - client code demarcating transactions can get some transaction architects foaming at the mouth and ranting, but that's a story for another month!

About Peter Holditch
Peter Holditch is a senior presales engineer in the UK for Azul Systems. Prior to joining Azul he spent nine years at BEA systems, going from being one of their first Professional Services consultants in Europe and finishing up as a principal presales engineer. He has an R&D background (originally having worked on BEA's Tuxedo product) and his technical interests are in high-throughput transaction systems. "Of the pitch" Peter likes to brew beer, build furniture, and undertake other ludicrously ambitious projects - but (generally) not all at the same time!

BEA WEBLOGIC LATEST STORIES
Microsoft To Keynote 4th International Virtualization Conference & Expo
Mike Neil is general manager for virtualization strategy in the Windows Server Division at Microsoft. Mike is focused on the delivery of the Windows virtualization technology, including Windows Server 2008 Hyper-V, Microsoft Hyper-V Server and Virtual PC 2007. Mike also directs the tec
3rd International Virtualization Conference & Expo: Themes & Topics
From Application Virtualization to Xen, a round-up of the virtualization themes & topics being discussed in NYC June 23-24, 2008 by the world-class speaker faculty at the 3rd International Virtualization Conference & Expo being held by SYS-CON Events in The Roosevelt Hotel, in midtown
Virtualization Meets DaaS - Desktop-as-a-Service
After a $1.5 million angel round, Desktone, which was started in 2006 by Eric Pulier, who also started SOA Software, US Interactive and IVT, picked up $17 million in first-round funding about a year ago from Highland Capital Partners, SoftBank Capital, Citrix Systems and the China-base
Engelbart's Usability Dilemma: Efficiency vs Ease-of-Use
The mouse was the original idea of Doug Engelbart who was the head of the Augmentation Research Center (ARC) at Stanford Research Institute. Engelbart's philosophy is best embodied, in my opinion, in the design of another device that he invented, the five-finger keyboard - with keys li
Web 2.0 Is Fundamentally About Empowering People
'Unlocking content to be remixed into new business value' is the driver of Web 2.0 in the enterprise, says Rod Smith, IBM VP of Emerging Internet Technologies, in this Exclusive Q&A with Jeremy Geelan on the occasion of IBM's release of a new technology created by IBM researchers, code
Why Do 'Cool Kids' Choose Ruby or PHP to Build Websites Instead of Java?
Here is a question that I have been pondering on and off for quite a while: Why do 'cool kids' choose Ruby or PHP to build websites instead of Java? I have to admit that I do not have an answer. Why do I even care? Because I am a Java developer. Like many Java developers, I get along w
SUBSCRIBE TO THE WORLD'S MOST POWERFUL NEWSLETTERS
SUBSCRIBE TO OUR RSS FEEDS & GET YOUR SYS-CON NEWS LIVE!
Click to Add our RSS Feeds to the Service of Your Choice:
Google Reader or Homepage Add to My Yahoo! Subscribe with Bloglines Subscribe in NewsGator Online
myFeedster Add to My AOL Subscribe in Rojo Add 'Hugg' to Newsburst from CNET News.com Kinja Digest View Additional SYS-CON Feeds
Publish Your Article! Please send it to editorial(at)sys-con.com!

Advertise on this site! Contact advertising(at)sys-con.com! 201 802-3021

SYS-CON FEATURED WHITEPAPERS

MOST READ THIS WEEK
ADS BY GOOGLE
BREAKING NEWS FROM THE WIRES
AmberPoint Extends SOA Governance to Apache ServiceMix, BEA AquaLogic Service Bus 3.0, BEA WebLogic Integration, Cisco ACE XML Gateway, JBoss Enterprise Application Platform and Oracle Fusion
AmberPoint announced today that it has extended the reach of its runtime SOA governance