3 Replies Latest reply on Mar 23, 2003 10:32 PM by davidjencks

    How to use Connection Pool configured in mssql-service.xml

    susanjin

      It seems JBoss has configured a connection pool in mssql-service.xml.But how to use it in java?I can get the datasource by such code:
      InitialContext ic = new InitialContext();
      DataSource ds = (DataSource)
      ic.lookup("java:/MSSQLDS");
      but how to get the connection Pool?need any more configuration?

      Thanks