1 Reply Latest reply on Oct 24, 2001 4:32 AM by jwkaltz

    Abstracting the new IntialContext(props) process

    hraun

      Hi,
      When using several JSPs and Servlets in the same app, what's the best way to abstract the process of creating a new initial context, to save re-doing the
      Hashtable props = new Hashtable();
      props.put("java.naming.factory.initial","org.jnp.interfaces.NamingContextFactory");
      props.put("java.naming.provider.url","jnp://localhost:1099");
      props.put("java.naming.factory.urlpkgs","org.jboss.naming:org.jnp.interfaces");
      thing in every class/page?
      I thought of having the properties Hashtable stored in the ServletContext, so I could say:
      ....new InitialContext(context.getAttribute("meInitProperties"));
      Any other thoughts?
      CHeers
      Peet

        • 1. Re: Abstracting the new IntialContext(props) process
          jwkaltz

          What I have, is one controller / login servlet which has servlet parameters for these properties and creates the InitialContext. This servlet also creates an object I call user handle which contains user information + the Context; and stores this object in the HttpSession.
          All other servlets (which live in the same environment) retrieve this handle and use its Context. It's not necessary to store the Hashtable, if you have the Context.