3 Replies Latest reply on Dec 2, 2004 1:20 PM by raist_majere

    org.jboss.util.NestedSQLException:

    monsterk

      everything started when i had to use hte hypersonic, and i had to edit the hsqldb-ds.xml to uncomment the lines from MBEAn and the the hypersonic service appear on the agent view at jmx-console, but the problem is when i try to use a entity bean cmp i got an error:

      org.jboss.util.NestedSQLException: You are trying to use a connection factory that has been shut down: ManagedConnectionFactory is null.; - nested throwable: (javax.resource.ResourceException: You are trying to use a connection factory that has been shut down: ManagedConnectionFactory is null.)

        • 1. Re: org.jboss.util.NestedSQLException:
          raist_majere

          What JBoss version do you use? What changes have you made? Did you use before having that problem another database?

          • 2. Re: org.jboss.util.NestedSQLException:
            monsterk

            <?xml version="1.0" encoding="UTF-8"?>
            <!-- The Hypersonic embedded database JCA connection factory config
            $Id: hsqldb-ds.xml,v 1.1.2.11 2003/09/28 12:31:36 starksm Exp $ -->


            <local-tx-datasource>
            <!-- The jndi name of the DataSource, it is prefixed with java:/ -->
            <!-- Datasources are not available outside the virtual machine -->
            <jndi-name>DefaultDS</jndi-name>
            <!-- for tcp connection, allowing other processes to use the hsqldb
            database. This requires the org.jboss.jdbc.HypersonicDatabase mbean.-->
            <connection-url>jdbc:hsqldb:hsql://localhost:1701</connection-url>
            <!-- for totally in-memory db, not saved when jboss stops.
            The org.jboss.jdbc.HypersonicDatabase mbean is unnecessary-->
            <connection-url>jdbc:hsqldb:.</connection-url>
            <!-- for in-process db with file store, saved when jboss stops. The
            org.jboss.jdbc.HypersonicDatabase is unnecessary
            -->
            <connection-url>jdbc:hsqldb:${jboss.server.data.dir}/hypersonic/localDB
            </connection-url>
            <!-- The driver class -->
            <driver-class>org.hsqldb.jdbcDriver</driver-class>
            <!-- The login and password -->
            <user-name>sa</user-name>

            <!--example of how to specify class that determines if exception means connection should be destroyed-->
            <!--exception-sorter-class-name>org.jboss.resource.adapter.jdbc.vendor.DummyExceptionSorter</exception-sorter-class-name-->
            <!-- this will be run before a managed connection is removed from the pool for use by a client-->
            <!--<check-valid-connection-sql>select * from something</check-valid-connection-sql> -->
            <!-- The minimum connections in a pool/sub-pool. Pools are lazily constructed on first use -->
            <min-pool-size>5</min-pool-size>
            <!-- The maximum connections in a pool/sub-pool -->
            <max-pool-size>20</max-pool-size>
            <!-- The time before an unused connection is destroyed -->
            <!-- NOTE: This is the check period. It will be destroyed somewhere between 1x and 2x this timeout after last use -->
            <!-- TEMPORARY FIX! - Disable idle connection removal, HSQLDB has a problem with not reaping threads on closed connections -->
            <idle-timeout-minutes>0</idle-timeout-minutes>
            <!-- sql to call when connection is created
            <new-connection-sql>some arbitrary sql</new-connection-sql>
            -->
            <!-- sql to call on an existing pooled connection when it is obtained from pool
            <check-valid-connection-sql>some arbitrary sql</check-valid-connection-sql>
            -->
            <!-- example of how to specify a class that determines a connection is valid before it is handed out from the pool
            <valid-connection-checker-class-name>org.jboss.resource.adapter.jdbc.vendor.DummyValidConnectionChecker</valid-connection-checker-class-name>
            -->
            <!-- Whether to check all statements are closed when the connection is returned to the pool,
            this is a debugging feature that should be turned off in production
            <track-statements>true</track-statements> -->
            <!-- Use the getConnection(user, pw) for logins
            <application-managed-security/>
            -->
            <!-- Use the security domain defined in conf/login-config.xml -->
            <security-domain>HsqlDbRealm</security-domain>
            <!-- Use the security domain defined in conf/login-config.xml or the
            getConnection(user, pw) for logins. The security domain takes precedence.
            <security-domain-and-application>HsqlDbRealm</security-domain-and-application>
            -->
            <!-- Add this depends tag if you are using the tcp connection url-->
            jboss:service=Hypersonic

            </local-tx-datasource>
            <!-- This mbean should be used only when using tcp connections. Uncomment
            when the tcp based connection-url is used. -->

            1701
            true
            default
            false
            true



            this is my xml
            and my jboss version is 3.2.3

            • 3. Re: org.jboss.util.NestedSQLException:
              raist_majere

              You have uncommented too many lines, 'cause there has to be only one "connection" tag uncommented. So when using the datasource for CMP the datasource cannot be found because is missconfigured. If you want to use TCP connections, leave that "connection" tag uncommented and comment the other ones.