Delete SAML web single sign-on (SSO) identity provider (IdP) partner using wsadmin.sh
Use the wsadmin command-line utility to delete an identity provider (IdP) partner in the SAML web single sign-on (SSO) trust association interceptor (TAI) configuration for WAS.
cd app_server_root/bin directory
wsadmin -lang jython
wsadmin> AdminTask.deleteSAMLIdpPartner('-ssoID 1 -idpId 1')Use the following parameters with this command:
Parameter Description -ssoId Identifier for the group of custom properties associated with the SSO service provider partner. Integer. Optional if we have only one SSO service provider partner. Required if we have more than one SSO service provider partner. -idpId Required. Identifier of the IdP to be deleted from the specified SSO service provider partner. Integer. -securityDomainName Name of the security domain of interest. If not specified, the command uses the global security configuration. String. -deleteSigningCert Optional. Specify true 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 IdP partner properties have been deleted for this WAS.
Example
Delete the SAML IdP partner 1 of SSO service provider partner 1 from the global security SAML TAI configuration:
AdminTask.deleteSAMLIdpPartner('-ssoId 1 -idpId 1')
Delete the SAML IdP partner 1 of SSO service provider partner 1 from the security domain myDomain1:
AdminTask.deleteSAMLIdpPartner('-ssoId 1 -idpId 1 -securityDomainName myDomain1')