Author: akarasulu Date: Mon Nov 22 20:05:30 2004 New Revision: 106271 Modified: incubator/directory/eve/trunk/jndi-provider/src/java/org/apache/eve/jndi/EveContextFactory.java Log: Looks like the changes I made for using relative paths starting at the "" dn altered the environment in the frontend. I will need to make sure the frontend clones the env it gets as well just in case. Basically the frontend is over writing the provider information.
Modified: incubator/directory/eve/trunk/jndi-provider/src/java/org/apache/eve/jndi/EveContextFactory.java Url: http://svn.apache.org/viewcvs/incubator/directory/eve/trunk/jndi-provider/src/java/org/apache/eve/jndi/EveContextFactory.java?view=diff&rev=106271&p1=incubator/directory/eve/trunk/jndi-provider/src/java/org/apache/eve/jndi/EveContextFactory.java&r1=106270&p2=incubator/directory/eve/trunk/jndi-provider/src/java/org/apache/eve/jndi/EveContextFactory.java&r2=106271 ============================================================================== --- incubator/directory/eve/trunk/jndi-provider/src/java/org/apache/eve/jndi/EveContextFactory.java (original) +++ incubator/directory/eve/trunk/jndi-provider/src/java/org/apache/eve/jndi/EveContextFactory.java Mon Nov 22 20:05:30 2004 @@ -491,7 +491,7 @@ private void startUpWireProtocol() throws NamingException { - proto = new LdapProtocolProvider( initialEnv ); + proto = new LdapProtocolProvider( ( Hashtable) initialEnv.clone() ); try {
