IAppIntSession::Initialize

The Initialize method provides access to the IStdSessionLogin interface, which initializes the client application session.

void spIAppIntSession->Initialize(IStdSessionLoginPtr pIStdSessionLogin);
Parameters
pIStdSessionLogin - [in] Required pointer to an IStdSessionLogin interface, which represents the StdSessionLogin component to use as the basis for the client application logon session.
Results
If the Initialize method successfully initializes the client application session to FileNet Workplace, the method returns an HRESULT value of S_OK.
Sample
The following is a fragment from the complete example for the IAppIntSession interface.
   ...
   // Initialize the AppIntSession component with the StdSessionLogin component
std::cout << "Initializing the AppIntSession component..." << std::endl;
spIAppIntSession->Initialize(spIStdSessionLogin);
...