2 Replies Latest reply on May 24, 2006 4:38 AM by manik

    Urgent : Rollback - Transaction not working in weblogic 81SP

      The problem is during session bean (Container Managed Transaction) invocation though the transaction is being rolled back, all the values set on the cache during the transaction are not being rolled back.

      I am using Jboss TreeCache in my application which is deployed on weblogic 81SP4. I was using 1.2.x version earlier and since it was not working. I tried the same scenario with 1.3.0.SP2, there also i hit the same issue

      private static TreeCache _tree = null;

      static {
       try {
       _tree = new TreeCache();
       _tree.setCacheMode(TreeCache.LOCAL);
       _tree.setTransactionManagerLookupClass("org.jboss.cache.GenericTransactionManagerLookup");
       _tree.startService();
       }
       catch (Exception ex) {
       _logger.writeToErrorLog("Cache could not be initialized.");
       }
       }

      This is the code which is used to initialize the jboss cache, which is used to initialize and setup the cache. Please let me know if i am missing some initialization. Is any one else also facing the same issue.