Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Talk:Scout/HowTo/4.0/Authentication with a LDAPSecurityFilter

Revision as of 04:18, 7 May 2015 by Michel.gre.gmail.com (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Hi, According to the documentation of the class, org.eclipse.scout.http.servletfilter.security.LDAPSecurityFilter is deprecated and org.eclipse.scout.rt.server.commons.servletfilter.security.LDAPSecurityFilter should be used instead.

Same for the extended LDAP security filter imports:

Deprecated:

import org.eclipse.scout.http.servletfilter.FilterConfigInjection;
import org.eclipse.scout.http.servletfilter.security.AbstractChainableSecurityFilter;
import org.eclipse.scout.http.servletfilter.security.PrincipalHolder;

Current classes:

import org.eclipse.scout.rt.server.commons.servletfilter.FilterConfigInjection;
import org.eclipse.scout.rt.server.commons.servletfilter.security.AbstractChainableSecurityFilter;
import org.eclipse.scout.rt.server.commons.servletfilter.security.PrincipalHolder;

But as I am new to Scout I don't dare changing the page, can someone confirm ? Thanks.

Back to the top