04-21-07 12:11 PM
[ https://issues.apache.org/jira/brow...ls:all-tabpanel ]
Emmanuel Lecharny closed DIRSERVER-323.
---------------------------------------
Closing all issues created in 2005 and before which are marked resolved
> EnvKeys.SHUTDOWN fails to work inside main() method
> ---------------------------------------------------
>
> Key: DIRSERVER-323
> URL: https://issues.apache.org/jira/browse/DIRSERVER-323
> Project: Directory ApacheDS
> Issue Type: Bug
> Environment: WindowsXP SP2, Eclipse 3.1m5, JRE 1.5_02
> Reporter: Robert Sanders
> Assigned To: Alex Karasulu
> Priority: Minor
>
> 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.e
xit() is called, not when EnvKeys.SHUTDOWN is used to create a DirContext. Example
cod
e:
> 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.S
erverContextFactory" );
> 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.
-
You can reply to this email to add a comment to the issue online.
[ Post a follow-up to this message ]
|