You are not logged in.
Pages: 1
I'm inheriting my own TSQLRestServer class, I can call SessionDelete now like advised on this topic, but I can't call/find TSQLRestServer.fSessions.Lock.
Thank you!
Last edited by imperyal (2019-02-28 14:00:20)
Offline
For other people that may need something like this:
procedure TDCS_ServerDB.kill_otherGroupSessions(Ctxt: TSQLRestServerURIContext);
var
i: integer;
currSession: TAuthSession;
begin
self.fSessions.Safe.Lock;
for i := self.fSessions.Count - 1 downto 0 do
begin
currSession := (self.fSessions[i] as TAuthSession);
if (currSession.GroupID = Ctxt.SessionGroup) and
(currSession.IDCardinal <> Ctxt.Session) then
self.SessionDelete(i, Ctxt);
end;
self.fSessions.Safe.UnLock;
end;
I think this is OK. Any suggestions ab?
Thank you for prompt help.
Offline
Pages: 1