A few transactions should be configured and applied to connect the CA Business Service Insight login system to the IMS. These SSO integration steps include:
For example, when the user is logged into the portal, an appropriate token is attached to the user session. The token contains the user information that can be used by CA Business Service Insight. Configure this step in the InsightGateway.aspx page. The coding in the InsightGateway.aspx page and the implementation method depend on the Identity Management tokens.
The following sample Gateway.aspx.cs shows an example of the GetInsightUserCredentials function:
/// <summary>
/// Obtain CA Business Service Insight user name and organization from portal user directory
/// This method is supposed to call ActiveDirectory or another repository using portal API
/// to obtain current user name and organization in terms of CA Business Service Insight
/// </summary>
/// <returns>CA Business Service Insight user credentials
struct</returns>
private UserCredentials GetInsightUserCredentials ()
{
UserCredentials ucInsightUser = new
UserCredentials () ;
//currently always assume user is sadmin and organization is Insight (default)
ucInsightUser.UserName = "Insightuser";
ucInsightUser.Organization = "Acme";
return ucInsightUser;
}
| Copyright © 2012 CA. Tous droits réservés. | Envoyer un courriel à CA Technologies sur cette rubrique |