The InitializeUnifiedLogin method initializes the client application's StdSessionLogin component for the login session to FileNet Workplace and instructs the component to share a single, unified login with all other FileNet Office Add-Ins. If you would prefer to that the StdSessionLogin component use a separate, non-unified login, initialize the component using the InitializeViaSessionName method.
void spIStdSessionLogin->InitializeUnifiedLogin();
... // Initialize the StdSessionLogin component to share a single, // unified login between all FileNet Office Add-Ins std::cout << "Initializing the StdSessionLogin component to use unified login..." << std::endl; spIStdSessionLogin->InitializeUnifiedLogin();
...