Reputation: 356
I've been using client server application using datasnap... Everything works flawlessly until server is restarted. Once server is restarted client has to be restarted as well. If do not restart client, client can't communicate with server because of annoying issue "session has expired". Who faces same issue? How to solver? Thanks
I've created example project to clarify what I mean. Download link
Steps to reproduce the issue:
Upvotes: 1
Views: 1096
Reputation: 222
TDSRestConnection.PreserveSessionID=False
It is an easy way to create a new session each time, but it can put unnecessary stress on the server.
When a session timeout occurs, it is better to initialize the session with the code below and request again.
TDSRestConnection.SessionID := '';
Handling the client like this and properly adjusting the server's session timeout time can make the server more effective.
Upvotes: 0
Reputation: 356
Ok, It seems I found a solution.
On client side just set TDSRestConnection.PreserveSessionID=False. I suppose every request will have new session id, thus it will never expire...
Upvotes: 2