The STS AuthenticationProvider
- Last Updated: October 29, 2020
- 1 minute read
- OpenEdge
- Version 12.2
- Documentation
The STS AuthenticationProvider in PAS for OpenEdge is a plug-in that enables the use of the OpenEdge Authentication Gateway as the source for user authentication and client-principal token generation.
The STS AuthenticationProvider:
- Takes user credentials (i.e. user name and password) as input
- Connects to the Authentication Gateway via a secure HTTPS connection
- Sends user credentials to the Authentication Gateway for authentication
If the authentication is successful, the STS AuthenticationProvider:
- Receives a sealed client-principal token from the Authentication Gateway
- Passes the client-principal (unaltered) to the Spring Security URL authorization process
Spring Security URL authorization:
- Performs Role-Based Authorization (RBA)
- Passes the client-principal token (if RBA is successful) to ABL applications
ROLES attribute serves
as input to the Spring Security URL RBA process. Therefore, the ROLES attribute must contain at least one role name that meets Spring
Security's URL access control requirements.Like other Spring Security components in PAS for OpenEdge, the STS
AuthenticationProvider is configured in an oeablSecurty.properties file on the instance, ABL application, or web
application levels. (For more information about the hierarchy of these oeablSecurty.properties files, see Enable ABL application authentication.)
On the instance level (../conf/oeablSecurity.properties, the file contains a complete set of STS AuthenticationProvider properties. For example:
|
The files on the ABL application (../ablapps/abl-app-name/oeablSecurity.properties) and the web application levels (../webapps/web-app-name/WEB-INF/oeablSecurity.properties) contain the properties that can override the properties specified on the instance level. For example:
|
See the ../conf/oeablSecurity.properties.README file for a description of the STS AuthenticationProvider properties and an explanation of their valid values.