WAS v8.5 > Secure applications > Authenticate users > Propagating security attributes among application serversUse the default single sign-on token with default or custom token factory to propagate security attributes
Do not use the default single sign-on token in service provider code. This default token is used by the WebSphere Application Server run-time code only.
Size limitations exist for this token when it is added as an HTTP cookie. If create an HTTP cookie using this token framework, we can implement a custom single sign-on token. To implement a custom single sign-on token see Implement a custom single sign-on token for security attribute propagation for more information.
- Modify the single sign-on token factory configuration to use a token factory other than the default token factory.
When the default single sign-on token is generated, the application server utilizes the TokenFactory class specified using the com.ibm.wsspi.security.token.singleSignonTokenFactory property. Use the dmgr console to modify the property.
The com.ibm.ws.security.ltpa.LTPAToken2Factory token factory is the default specified for this property. This token factory creates a SSO token called LtpaToken2, which WAS uses for propagation. This token factory uses the AES/CBC/PKCS5Padding cipher.
- Open the dmgr console.
- Click Security > Global security.
- Under Authentication, click Custom properties.
- Perform our own signing and encryption of the default single sign-on token.
If you need to perform our own signing and encryption of the default single sign-on token, you must implement the following classes:
- com.ibm.wsspi.security.ltpa.Token
- com.ibm.wsspi.security.ltpa.TokenFactory
Your token factory implementation instantiates (createToken) and validates (validateTokenBytes) your token implementation. We can use the Lightweight Third-Party Authentication (LTPA) keys passed into the initialize method of the token factory or we can use our own keys. If we use our own keys, they must be the same everywhere to validate the tokens that are generated using those keys. See the API reference information for more information on implementing our own custom token factory.
- Associate our own token factory with the default single sign-on token.
- Open the dmgr console.
- Click Security > Global security.
- Under Authentication, click Custom properties.
- Locate the com.ibm.wsspi.security.token.singleSignonTokenFactory property and verify the value of this property matches your custom TokenFactory implementation.
- Verify that your implementation classes are put into the app_server_root/classes directory so the class loader can load the classes.
- Verify that your implementation classes are located in the ${USER_INSTALL_ROOT}/classes directory so the class loader can load the classes.
Related
Propagating security attributes among application servers
Implement a custom single sign-on token for security attribute propagation