CreateUserSession

Description

Create a Session object. After the object is created, you must login to the Session.

Syntax

Perl


$CompassObj->CreateUserSession(); 
Identifier
Description
CompassObj
A CQCompass object.
Return value
Returns a Session object.

Example

Perl


use CQPerlExt;



my $cqobject =  CQCompass::Build();

my $SessionObj = $cqobject->CreateUserSession();

# login to the Session object

# do something with the Session object...

 CQCompass::Unbuild($cqobject);