![]() |
ServerController.SecurityOptions.CheckWindowId - Printable Version +- Atozed Forums (https://www.atozed.com/forums) +-- Forum: Atozed Software Products (https://www.atozed.com/forums/forum-1.html) +--- Forum: IntraWeb (https://www.atozed.com/forums/forum-3.html) +---- Forum: English (https://www.atozed.com/forums/forum-16.html) +----- Forum: IntraWeb General Discussion (https://www.atozed.com/forums/forum-4.html) +----- Thread: ServerController.SecurityOptions.CheckWindowId (/thread-1253.html) |
ServerController.SecurityOptions.CheckWindowId - JuergenS - 09-19-2019 Hi, C++Builder 10.3.2 IW 15.1.5 ULT I have set the parameter and can still clone any application tab in Mozilla Firefox or create a new tab with the same URL. With each session copy of the application, I can perform different functions. Have I misunderstood something or is it not working as described? Regards Juergen RE: ServerController.SecurityOptions.CheckWindowId - kudzu - 09-19-2019 It depends on the tracking mode that you are using how IW handles this. For some tracking modes this is valid as it will create new sessions in new windows/tabs. RE: ServerController.SecurityOptions.CheckWindowId - JuergenS - 09-19-2019 OK, I thought so. Is it possible to get more information on how to set other configuration parameters to use this functionality. Regards Juergen RE: ServerController.SecurityOptions.CheckWindowId - Alexandre Machado - 09-23-2019 You need to set CheckWindowId to True and set the OnWindowIdChanged event (in ServerController). On the event you will use the parameter vContinue to tell IW if you are allowing the user to continue or not. Try this and see the result: Code: procedure TIWServerController.IWServerControllerBaseWindowIdChanged( RE: ServerController.SecurityOptions.CheckWindowId - JuergenS - 09-23-2019 Great, it works. Regards Juergen |