Contents SAS/IntrNet 9.1: Application Dispatcher Previous Next

APPSRV_SESSION


Creates or deletes a session

Syntax
Arguments
Details
Examples


Syntax

RC = APPSRV_SESSION( 'command' <, timeout> )


Arguments

command
is the command to be performed. Allowed values are "CREATE" and "DELETE."

timeout
is the optional session timeout. This parameter is valid only when you specify a value of "CREATE" for the command parameter.

Details

The APPSRV_SESSION function creates or deletes a session. The function returns zero for a successful completion. A non-zero return value indicates an error condition.


Examples

SAS Statements
rc=appsrv_session('create', 600);
rc=appsrv_session('delete');

Contents SAS/IntrNet 9.1: Application Dispatcher Previous Next