Need help to create a in memory LDAP server that support domain\username logon. Here is the old code that I need to test with the in memory ldap server. Hashtable env = new Hashtable(); env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory"); env.put(Context.SECURITY_AUTHENTICATION, "simple"); env.put(Context.PROVIDER_URL, "ldap://"+authDomainServerIP); env.put(Context.SECURITY_PRINCIPAL, "sciencelogic\\tkrilly"); env.put(Context.SECURITY_CREDENTIALS, "password"); Here is the...