IStdSessionLogin::InitializeUnifiedLogin

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();
Parameters
None.
Results
This method always returns an HRESULT value of S_OK if successful.
Sample
The following is a fragment from the complete example for the IStdSessionLogin interface.
   ...
   // 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();
   ...