4 Replies Latest reply on Apr 12, 2002 6:47 PM by billjive2

    Error loading Tyrex

    billjive2

      All,

      I'm getting numerous Tyrex errors when I start JBoss. I basically get this stack trace again and again:

      [WARN,root] There was an error loading Tyrex, this may not be a serious problem,
      but you probably want to know anyway.
      java.lang.ClassCastException: org.jboss.tm.usertx.client.ServerVMClientUserTrans
      action
      at org.ofbiz.core.entity.transaction.JNDIFactory.getTransactionManager(J
      NDIFactory.java:71)
      at org.ofbiz.core.entity.TransactionFactory.getTransactionManager(Transa
      ctionFactory.java:93)
      ....[snip]....

      Any ideas? The strange thing is that I've commented out the Tyrex declaration in jboss.jcml.

      Thanks in advance,
      --Bill

        • 1. Re: Error loading Tyrex
          davidjencks

          Are you running an old version of jboss that has jboss-auto.jcml? This can make your old mbeans come back to life to haunt you. Try deleting it if present.

          • 2. Re: Error loading Tyrex
            billjive2

            > Are you running an old version of jboss that has
            > jboss-auto.jcml? This can make your old mbeans come
            > back to life to haunt you. Try deleting it if
            > present.

            Nope, I'm using JBoss 2.4 which has a jboss.jcml.

            Thanks,
            --Bill

            • 3. Re: Error loading Tyrex
              davidjencks

              I think I'm beating a dead horse... all 2.x jbosses have jboss.jcml, which is what _you_ get to try to change for initial configuration. jboss-auto.jcml used to be there to save your dynamically changed configurations automatically without telling you. I think early 2.4 versions still had it. The main effect was that if you removed an mbean from jboss.jcml, you would discover it come back from the grave as jboss happily recreated it from jboss-auto.jcml, automatically saved from your last shutdown.

              If this is really not it, look closely at your log to try to figure out where the configuration for it is coming from.

              • 4. Re: Error loading Tyrex
                billjive2


                > If this is really not it, look closely at your log to
                > try to figure out where the configuration for it is
                > coming from.

                Well, I think I figured out the problem -- sort of. Turns out, I don't need to use the Tyrex TransactionManager so I just commented it out of the jcml file. Now, I'm trying to figure out how to correctly decleare the default TransactionManager as a JNDI name. The errors I'm getting are:

                [WARN,JNDIFactory] [JNDIFactory.getTransactionManager] Failed to find TransactionManager named java:comp/TransactionManager in JNDI.

                In my jboss.jcml file, I have:


                300


                Do I also need to declare something else to the the TransactionManager registered in JNDI?

                Thanks for your help.
                --Bill