javax.naming.CommunicationException: сброс подключения [Исключением корня является java.net.SocketException: сброс подключения]; оставшееся имя

Я получаю исключение сокета при попытке подключиться к LDAP. Вот мой пример кода. Я вижу эту проблему в Java 8. Я никогда не наблюдал эту проблему в более ранних версиях Java.

public static DirContext getDirectoryContext() throws NamingException {

        Properties env = new Properties();
        env.put(Context.INITIAL_CONTEXT_FACTORY,
                Common.getProperty("ldap.context.factory"));
        env.put(Context.PROVIDER_URL,
                Common.getProperty("ldap.provider.url"));
        env.put(Context.SECURITY_AUTHENTICATION,
                Common.getProperty("ldap.security.authentication"));
        env.put(Context.SECURITY_PRINCIPAL,
                Common.getProperty("ldap.security.principal"));
        env.put(Context.SECURITY_CREDENTIALS,
                Common.getProperty("ldap.security.credential"));
        context = new InitialDirContext(env);
        log.debug("NamingContext Initialized");
    return context;
}
context = getDirectoryContext();

Я использую один и тот же контекст для всех вызовов LDAP.

private NamingEnumeration getResultsFromLdap(String searchFilter) {
    NamingEnumeration results = null;
    try {
        // Getting the list from LDAP matching the given filter
        SearchControls sControls = new SearchControls();
        sControls.setSearchScope(SearchControls.SUBTREE_SCOPE);
        String baseContext = Common.getProperty("ldap.base.context");
        results = context.search(baseContext, searchFilter, sControls);
        } catch (Exception e) {
        log.error("EXCEPTION IN getLDAPConnection METHOD, searchFilter : "
            + searchFilter + " : Exception Message : " + e.getMessage());
        }
        return results;
} // End of getLDAPConnection_SearchResults

Может кто-нибудь помочь?

0 ответов

Другие вопросы по тегам