Delete SAML web single sign-on (SSO) trust association interceptor (TAI) using wsadmin.sh
Use the wsadmin command-line utility to delete the SAML trust association interceptor (TAI) in the security configuration of the WAS.
cd app_server_root/bin
./wsadmin.sh -lang jython.
wsadmin>AdminTask.deleteSAMLTAISSO()Use the following parameters with this command:
Parameter Description -ssoId Optional if we have only one SSO service provider partner. If we have more than one SSO service provider partner, this parameter is required. Identifier for the group of custom properties associated with the SSO service provider partner. Integer. -securityDomainName Name of the security domain of interest. If not specified, the command uses the global security configuration. This parameter is specified as a String. -deleteSigningCert Optional. Specify true if we want to delete the signing certificate from the trust store. If this alias is referenced by another IdP or service provider, it is not deleted from the trust store. Boolean.
The SAML TAI SSO service provider partner properties have been deleted for this WAS.
Example
Delete the SAML TAI SSO service provider partner 1 from the global security SAML TAI configuration:AdminTask.deleteSAMLTAISSO('-ssoId 1')
Delete the SAML TAI SSO service provider partner 1 from the security domain myDomain1:
AdminTask.deleteSAMLTAISSO('-ssoId 1 -securityDomainName myDomain1')