英文:
Migrating PL/SQL Web Toolkit web app from Apache/mod_plsql to Tomcat/ORDS causes issues with logging out of web app
问题
我的PL/SQL Web Toolkit应用程序在注销时出现问题。Apache/mod_plsql配置中有一个名为"logmeoff"的函数,用于在使用Apache HTTP时注销。但现在我迁移到了Tomcat/ORDS,"logmeoff"函数不存在,我也没有找到替代方法来注销。有什么建议吗?
问题是我无法注销Web应用程序,也没有报告错误。会话保持活动状态。
英文:
My PL/SQL Web Toolkit application is having issues logging out. The Apache/mod_plsql configuration had a "logmeoff" function that I could use to log out when using Apache HTTP. But now that I migrated to Tomcat/ORDS, the "logmeoff" function does not exist and I have not found a replacement (or method) to logout. Any ideas?
The issue is that I can never log out of the web application. And there are no errors reported.
The session stays active.
答案1
得分: 2
从 ORDS 发布说明(自 v18 起)
支持 mod_plsql logmeoff
现代浏览器不可靠地支持 mod_plsql logmeoff 机制,ORDS 也不提供此功能。结束 HTTP 基本身份验证会话的唯一方法是关闭浏览器。
英文:
From the Release Notes of ORDS (since v18)
Support For mod_plsql logmeoff
The mod_plsql logmeoff mechanism is not supported reliably by modern browsers and it is not provided by ORDS. The only way to end a HTTP Basic Authentication session is to close the Browser.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论