Display SAML identity provider (IdP) partner configuration using wsadmin.sh
Use the wsadmin command-line utility to display the SAML trust association interceptor (TAI) identity provider (IdP) partner configuration in the security configuration for WAS.
- Start WAS appservers.
- Run:
cd app_server_root/bin
./wsadmin -lang jython
- At the wsadmin prompt, enter:
AdminTask.showSAMLIdpPartner('-ssoId 1')
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. -idpId Identifier of the IdP whose properties we want to display. If a value for this parameter is not specified, the command shows all IdP partners for 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.
The custom properties for the specified SAML web SSO IdP partner are displayed.
Example
Display the SAML Idp partner 1 of the SSO service provider partner 1 from the global security SAML TAI configuration:
AdminTask.showSAMLIdpPartner('-ssoId 1 -idpId 1')
Display the SAML IdP partner 2 of the SSO service provider partner 1 from the security domain myDomain1:
AdminTask.showSAMLIdpPartner('-ssoId 1 -idpId 2 -securityDomainName myDomain1')