0 Replies Latest reply on Feb 20, 2002 10:47 AM by nikolaj

    "Easy to use" bean connector class... howto?

    nikolaj

      Hi there,

      I want to make an easy bean connector class that I can use dynamically, like:

      BeanConn mrbean = new BeanConn("MrBean");
      bc.doTheStuff();

      , instead of:

      InitialContext ctx = new InitialContext();
      MrBeanLocalHome home = (MrBeanLocalHome) ctx.lookup("java:comp/env/ejb/MrBean");
      MrBeanLocal mrbean = home.create();
      mrbean.doTheStuff();

      Howto? Thanks

      /nikolaj