You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@directory.apache.org by "Alex Karasulu (JIRA)" <di...@incubator.apache.org> on 2005/03/24 15:51:20 UTC

[jira] Resolved: (DIREVE-146) EnvKeys.SHUTDOWN fails to work inside main() method

     [ http://issues.apache.org/jira/browse/DIREVE-146?page=history ]
     
Alex Karasulu resolved DIREVE-146:
----------------------------------

     Resolution: Fixed
    Fix Version: 0.9

This has been resolved when fixing the deadlocks in MINA and making references to the minaRegistery and minaService static members withing the ServerContextFactory.

> EnvKeys.SHUTDOWN fails to work inside main() method
> ---------------------------------------------------
>
>          Key: DIREVE-146
>          URL: http://issues.apache.org/jira/browse/DIREVE-146
>      Project: Directory Server
>         Type: Bug
>   Components: server main
>  Environment: WindowsXP SP2, Eclipse 3.1m5, JRE 1.5_02
>     Reporter: Robert Sanders
>     Assignee: Alex Karasulu
>     Priority: Minor
>      Fix For: 0.9

>
> While the JUnit test code works correctly, when using a main() method to create an instance of the directory server via JNDI, then server is only shutdown if System.exit() is called, not when EnvKeys.SHUTDOWN is used to create a DirContext.  Example code:
> public class Ldap2 {
> 	
> 	private Hashtable env = new Hashtable();
> 	public Ldap2() {
> 		env.put( Context.PROVIDER_URL, "ou=system" );
> 		env.put( Context.INITIAL_CONTEXT_FACTORY, "org.apache.ldap.server.jndi.ServerContextFactory" );
> 		env.put( Context.SECURITY_PRINCIPAL, "uid=admin,ou=system" );
> 		env.put( Context.SECURITY_CREDENTIALS, "secret" );
> 	}
> 	
> 	/**
> 	 * @param args
> 	 */
> 	public static void main(String[] args) throws Exception {
> 		Ldap2 ldap = new Ldap2();
> 		ldap.run();
> 	}
> 	
> 	private void run() throws Exception {
> 		DirContext ctx = new InitialDirContext( env );
> 		try {
> 			System.out.println( ctx );
> 			String key = null;
> 			NamingEnumeration list = ctx.list("");
> 			while (list.hasMore()) {
> 			    NameClassPair nc = (NameClassPair)list.next();
> 			    System.out.println( nc );
> 			}
> 			
> 			ctx.close();
> 			ctx = null;
> 		} finally {
> 			Hashtable closeEnv = new Hashtable(env);
> 			closeEnv.put(EnvKeys.SHUTDOWN , "");
> 			new InitialDirContext( closeEnv );
> 			//System.exit(0);
> 		} 
> 	}
> }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira