public InitialContext getInitialContext() throws NamingException
{
Hashtable<String, String> props = new Hashtable<String, String>(env);
props.put(Context.OBJECT_FACTORIES, "com.sun.jndi.ldap.obj.LdapGroupFactory");
props.put(Context.STATE_FACTORIES, "com.sun.jndi.ldap.obj.LdapGroupFactory");
return new InitialLdapContext(props, null);
}