The Initialize method provides access to the IStdSessionLogin interface, which initializes the client application session.
void spIAppIntSession->Initialize(IStdSessionLoginPtr pIStdSessionLogin);
pIStdSessionLogin
- [in] Required pointer to an
IStdSessionLogin interface, which represents
the StdSessionLogin component to
use as the basis for the client application logon session. ... // Initialize the AppIntSession component with the StdSessionLogin component
std::cout << "Initializing the AppIntSession component..." << std::endl;
spIAppIntSession->Initialize(spIStdSessionLogin);...