Environment.java
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. package bible.rmi.example4;
  2. import javax.naming.*;
  3. import java.util.*;
  4. /**
  5.  * Class Environment
  6.  *
  7.  *
  8.  * @author
  9.  * @version %I%, %G%
  10.  */
  11. public class Environment {
  12.   /** Field JNDI_FACTORY */
  13.   public final static String JNDI_FACTORY =
  14.     "weblogic.jndi.WLInitialContextFactory";
  15.   /** Field WEBLOGIC_URL */
  16.   public final static String WEBLOGIC_URL = "t3://localhost:7001";
  17.   /**
  18.    * Method getInitialContext
  19.    *
  20.    *
  21.    * @return
  22.    *
  23.    * @throws NamingException
  24.    *
  25.    */
  26.   public static InitialContext getInitialContext() throws NamingException {
  27.     Hashtable env = new Hashtable();
  28.     env.put(Context.INITIAL_CONTEXT_FACTORY, JNDI_FACTORY);
  29.     env.put(Context.PROVIDER_URL, WEBLOGIC_URL);
  30.     return new InitialContext(env);
  31.   }
  32. }