A little question about OXID session

Hello ! I’m creating a plugin for OXID SOAP. My plugin will accept session id of user and should identificate user id. How do I manage this? How is session id and user id are connected in OXID. As I can see, session id is written somewhere in DB, if so to what table it is written

Hi antoha360,

in former times (#3 and #2.7), there was an oxsession table at the database as I remember.
Where did you find the code?

Regards

Maybe you can use this:

oxSession.getRemoteAccessToken ( $ blGenerateNew = true )
Returns remote access key. With this key (called over “remotekey” URL parameter) and session id (sid parameter) you can access session from another client. The key is generated once per session after the first request.

Parameters:
bool $blGenerateNew Should new token be generated
Returns:
string
Definition at line 738 of file oxsession.php.