Description
Wrapper for IsAlive.
Parameters
icGlobalSessionId | input | character | |
ilUpdateSession | input | logical | update session timestamp if still active |
olIsActive | output | logical | |
oiReturnStatus | output | integer | Return status of the method. |
Internal usage
BLF
QadFinancials
program code (program1/pauthenticationqra.p)
define variable sessService as class com.qad.qra.session.ISessionService no-undo.
olIsActive = yes.
sessService = cast(com.qad.qra.core.GlobalServiceLocator:Current:GetInstance(
Progress.Lang.Class:GetClass("com.qad.qra.session.ISessionService")),
com.qad.qra.session.ISessionService).
sessService:KeepAlive (icGlobalSessionId).
catch theError as Progress.Lang.Error:
olIsActive = no.
end catch.