We are developing a new Datasnap server (tcp/ip) with Delphi XE and have run into an issue. We do not know when the client disconnects in an abnormal way, ie. the connection is dropped or the client pc is rebooted.
When a client establishes a connection we save it's details in a list as so:
TClientInfo = record
Id: integer;
Session: TDSSession;
LastSeen: TDateTime;
end;
...
ClientInfoList: TDictionary<Integer, TClientInfo>;
...
//OnConnect
ClientInfo.ClientId := ClientId;
ClientInfo.Session := TDSSessionManager.GetThreadSession;
ClientInfo.LastSeen := Now();
ClientInfoList.Add(ClientId, ClientInfo);
Ideally we would want to iterate throught the ClientInforList and disconnect any client that has not been seen for 30 minutes, but this is where I have a problem.
I have tried to disconnect or terminate the client session as follows without any luck.
for i in ServerContainer.ClientInfoList.Keys do
begin
ClientInfo := TClientInfo(ServerContainer.ClientInfoList[i]);
ClientInfo.Session.Terminate;
end;
Is there a way of doing this in Delphi XE?
ServerClass.LifeCycleset? [Server,Session,Invocation] – James L. Sep 21 '12 at 11:48