+

Search Tips   |   Advanced Search

WP AuthenticationService

WP AuthenticationService contains the configuration properties for portal authentication. Authentication means that users identify themselves in order to gain access to the system. Usually they do this by a user ID and password.

    authentication.execute.portal.jaas.login = (false)

    Enable or disable the execution of the portal JAAS login:

      false

      Disable the execution of the portal JAAS login. Default. Disable if we have no JAAS Login Modules defined for the portal application login configuration.

      true

      Enable the execution of the portal JAAS login. We can enable this property if we have JAAS Login Modules defined for the portal application login configuration.

    This is related to performance.

Use the following properties to define the custom filters in the various authentication filter chains in the portal. Each of these properties takes a list of the fully qualified class names of the custom filter implementations, separated by colons ( : ) or semicolons ( ; ). For concept information about authentication filters, read the topic about Configure authentication filters.

    login.explicit.filterchain = <none>

    Custom filters for an explicit login by user name and password. Implements the interface com.ibm.portal.auth.ExplicitLoginFilter.

    login.implicit.filterchain = <none>

    Custom filters for an implicit login, that is if the user is already authenticated to WebSphere Application Server but has no portal session yet. Implements the interface com.ibm.portal.auth.ImplicitLoginFilter.

    logout.explicit.filterchain = <none>

    Custom filters for an explicit logout. Implements the interface com.ibm.portal.auth.ExplicitLogoutFilter.

    logout.implicit.filterchain = <none>

    Custom filters for an implicit logout, that is if the user got a session timeout. Implements the interface com.ibm.portal.auth.ImplicitLogoutFilter.

    sessiontimeout.filterchain = <none>

    Custom filters for directly after an idle timeout of the session occurred. Implements the interface com.ibm.portal.auth.SessionTimeoutFilter.

    sessionvalidation.filterchain = <none>

    Custom filters for every request before the action handling and rendering is processed. Implements the interface com.ibm.portal.auth.SessionValidationFilter.

    filterchain.properties = <none>

    Use an arbitrary set of properties according to the previous pattern to specify properties for any of the custom filters. The property value is then available to the specified filter class in the SecurityFilterConfig object passed to its init method.


Parent Portal Security Services

Related concepts:

Configure authentication filters