System.arraycopy(globalId, 0, globalTranId, 0, 1);
System.arraycopy(tempBranchId, 0, branchQualifier, 0, 1);
// Create the Transaction Id
// Transaction Id has 3 components
Xid xid = new OracleXid(0x1234, // Format identifier
globalTranId, // Global transaction identifier
branchQualifier); // Branch qualifier
return xid;
}