Creating sessions

The SessionManager::Session interface represents an authenticated session between the client application and a server. The Manager::createSession method accepts a user name and password and returns a Session_var object, session, as shown in the example below:

  ...
  Session_var session =     manager.createSession("jagadmin", "");
  ...