Is there any way to identify the current session of a WebCore session? If a user starts the WebCore app in his browser, I want to log, what he does, but this must not be mixed with what another user does (by chance) at the very same time.
So I want to know e.g how long a user interacts with the app.
tx for support!
Bernd
Do you have more details? Is there a backend? I guess you want to log in the backend?
The backend is some kind of Apache server, I suppose. Mainly serving a PHP site, which delivers my WebCopre app.
I think, I can ceate some kind of GUID when the user starts the app, so I can use this (unique) GUID to make all entries in a log unique. But maybe there is already some kind of sessionid?
We use SessionIds. but create them. These are then added to the headers of all calls to the XData Server
Tx for that, Russell, how do you create them?
We make a call to the server as we record them in the database. But a GUID would do the trick.
You can create the GUID client side or server side.
Client side, TMS WEB Core has the NewGuid function in TGuidHelper in System.SysUtils unit.
Yes, I came up with creating a GUID upon startup, that works for me.
Tx for your assistance!