CreateAdminSession

Description

Creates an AdminSession object.

Syntax

Perl


$CompassObj->CreateAdminSession(); 
Identifier
Description
$CompassObj
A CQCompass object.
Return value
Returns an AdminSession object.

Example

Perl


use CQPerlExt;



my $cqobject =  CQCompass::Build();

my $AdminSessionObj = $cqobject->CreateAdminSession();

# login to the AdminSession object

# do something with the AdminSession object...

 CQCompass::Unbuild($cqobject);