Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当用户单击 oracle apex 导航栏中的注销 url 时如何结束存储在表中的用户会话以及当用户关闭浏览器窗口时如何结束用户会话..
基本上我想在 oracle apex 中做负载平衡..
并非总是可以捕获浏览器关闭/标签关闭事件。即使 APEX 具有页面卸载动态操作,它也并不总是按预期工作
要在注销时删除会话,您可以调用删除 APEX 会话的应用程序进程。
您可以在应用程序进程中使用以下代码来删除会话。
begin apex_session.delete_session ( p_session_id => v('APP_SESSION'); end;