4 Replies Latest reply on Jan 24, 2004 8:54 AM by jamesstrachan

    JBoss JNDI and persistence?

    mdichi

       

      "mdichi" wrote:
      Does JBoss JNDI really persist objects stored in it? As part of a quick experiment I ran JBoss, ran a JSP (which calls an EJB that stores a string in JNDI), quit JBoss, and then restarted JBoss.

      I observed the JNDI repository using JNDI explorer right after I stored my string. It was there. Then I observed the JNDI repository after restarting JBoss. It was gone!

      Shouldn't info stored in JNDI remain there even after a shutdown of JBoss?

      My code follows at the end of this message.

      Thanks,
      Mike

      ------------------------------

      try
      {
      Context c = new InitialContext();
      Context c2 = c.createSubcontext( "test" );
      c2.bind( "who", new String( "Mike" ) );
      }
      catch( Exception e )
      {
      }