Displaying SAML web single sign-on (SSO) trust association interceptor (TAI) configuration using the wsadmin command-line utility

About this task

You can use the wsadmin command-line utility to display the Security Assertion Markup Language (SAML) web single sign-in (SSO) trust association interceptor (TAI) in the security configuration for WebSphere Application Server.

Procedure

  1. Start the WebSphere Application Server.
  2. Start the wsadmin command utility from the app_server_root/bin directory by entering the command: wsadmin -lang jython.
  3. At the wsadmin prompt, enter the following command:
    AdminTask.showSAMLTAISSO()
    You can use the following parameters with this command:
    Table 1. showSAMLTAISSO parameters
    Parameter Description
    -ssoId This parameter specifies an SSO service provider partner identifier for which the TAI properties need to be displayed. If this parameter is not specified, all SSO partners are displayed. This parameter is specified as an integer.
    -securityDomainName This parameter specifies the name of the security domain of interest. If a value for this parameter is not specified, the command uses the global security configuration. This parameter is specified as a String.

Results

The SAML TAI custom properties for this WebSphere Application Server are displayed.

Example

The following example displays the SAML TAI custom properties of the SSO service provider partner 1 from the global security configuration:
AdminTask.showSAMLTAISSO('-ssoId 1)
The following example displays the SAML TAI custom properties of the SSO service provider partner 1 from the security domain myDomain1:
AdminTask.showSAMLTAISSO('-ssoId 1 -securityDomainName myDomain1')