1 Reply Latest reply on May 24, 2004 9:00 AM by adrian.brock

    ConnectionManager implementations?

      I'm trying to do a small unit test outside of the JBoss server and create my ConnectionFactory manually.

      ManagedConnectionFactory mcf = (ManagedConnectionFactory) new WrappedSessionManagedSessionFactory();
       ConnectionManager manager = new NoTxConnectionManager();
       WrappedSessionRequestInfo info = new WrappedSessionRequestInfo("user", "pw");
      
      
       WrappedSessionFactoryImpl impl = new WrappedSessionFactoryImpl(manager, mcf, info);
      


      Obviously, I can't cast NoTxConnectionManager to ConnectionManager, but looking through the jbosscx source, I don't see anything that implements ConnectionManager.

      Where is the ConnectionManager actually created inside JBoss?
      Steve