Hi all,
I have a temporary TPS file which stores the SessionID and some other fields. The records of a particular session are deleted in the DeleteSession method of the WebHandler procedure when the user’s session ends. This works fine except in situations that the web server is stopped prematurely. Then there are remainders in the temporary file of old sessions.
My first guess is to empty the file in the Init method of the WebServer procedure as there cannot be active sessions when the web server starts. But will this also work when my application is compiled as a DLL for use on the Multi Site Host? I cannot test it right now, I want just to be prepared for Multi Site Host.