Network Deployment (Distributed operating systems), v8.0 > Secure applications and their environment > Authenticate users > Propagate security attributes among application servers
Use 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 WAS 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, you 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.
Procedure
- 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 admin 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 single sign-on (SSO) token called LtpaToken2, which WAS uses for propagation. This token factory uses the AES/CBC/PKCS5Padding cipher.
- Open the admin console.
- Click Security > Global security.
- Under Authentication, click Custom properties.
- Perform your own signing and encryption of the default single sign-on token.
If perform your own signing and encryption of the default single sign-on token, 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 you can use your own keys. If you use your 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 your own custom token factory.
- Associate your own token factory with the default single sign-on token.
- Open the admin console.
- Click Security > Global security.
- Under Authentication, click Custom properties.
- Locate the com.ibm.wsspi.security.token.singleSignonTokenFactory property and verify that the value of this property matches your custom TokenFactory implementation.
- Verify that your implementation classes are put into the WAS_HOME/classes directory so that the WAS class loader can load the classes.
- Verify that your implementation classes are located in the ${USER_INSTALL_ROOT}/classes directory so that the WAS class loader can load the classes.
Implement a custom single sign-on token for security attribute propagation
Propagate security attributes among application servers