Package com.sun.corba.ee.spi.costransactions

Examples of com.sun.corba.ee.spi.costransactions.TransactionService


      try {
          Class theJTSClass = Class.forName(clsName);

    if (theJTSClass != null) {
        try {
            TransactionService jts = (TransactionService)theJTSClass.newInstance();
      jts.identify_ORB(theORB, tsIdent, jtsProperties ) ;
      jtsInterceptor.setTSIdentification(tsIdent);
      // XXX should jts.get_current() be called everytime
      // resolve_initial_references is called ??
      org.omg.CosTransactions.Current transactionCurrent =
        jts.get_current();
     
      theORB.getLocalResolver().register(
                 ORBConstants.TRANSACTION_CURRENT_NAME,
                 new Constant(transactionCurrent));
     
View Full Code Here


            try {
                Class theJTSClass = Class.forName(jtsClassName);

                if (theJTSClass != null) {
                        try {
                        TransactionService jts = (TransactionService)theJTSClass.newInstance();
                        jts.identify_ORB(theORB, tsIdent, jtsProperties ) ;
                        interceptor.setTSIdentification(tsIdent);

                        // V2-XXX should jts.get_current() be called everytime
                        // resolve_initial_references is called ??
                        org.omg.CosTransactions.Current transactionCurrent =
                                jts.get_current();

                        theORB.getLocalResolver().register(
                                ORBConstants.TRANSACTION_CURRENT_NAME,
                                ClosureFactory.makeConstant(transactionCurrent));
View Full Code Here

TOP

Related Classes of com.sun.corba.ee.spi.costransactions.TransactionService

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.