5 Replies Latest reply on Mar 30, 2006 8:17 AM by mahendra.wadekar

    HOw can I get the connection object from JBoss

    mahendra.wadekar

      Hi All
      I am using JBoss 4.0.3SP1 with Sybase. I am implementing connection pooling from JBoss for which I have done all the configuration in Jboss configuration files. I am trying to get the connection object from the JBoss using this code

      System.setProperty("java.naming.factory.initial","org.jnp.interfaces.NamingContextFactory");
      System.setProperty("java.naming.provider.url","jnp://localhost:1099");
      System.setProperty("java.naming.factory.url.pkgs","org.jboss.naming:org.jnp.interfaces");
      InitialContext ctxt = new InitialContext();
      Object obj = ctxt.lookup("java:/SybaseDB");

      Now the class of this object (obj) is javax.naming.Reference.

      I am not able to get the Connection object from here.
      I am on mid of my development so any help on this will be appreciated.
      If any one need detail information on my code I can give it.

      Thanks in Advance