I am using the open62541 SDK to create an OPC UA server and would like to configure access control to prevent the same user from logging in multiple times simultaneously. Currently, the server allows multiple logins for the same user, and I need to enforce a restriction to ensure only one active session per user at any given time.
I have tried implementing this in my application to restrict multiple logins for the same user, but the API is still performing the ActivateSession operation, allowing multiple sessions for the same user. Is it possible to restrict this by hardcoding, or do we need to modify the API itself.