使用 SSL-Ext 和 Struts 1.2.9 在 HTTP 和 HTTPS 之间切换
我使用 Struts 的 sslext 扩展来启用/禁用通过 HTTPS 传递数据。我已经实现了它,以便 https 仅用于信用卡处理。切换到 https 时工作正常,但我无法让它切换回 http。
我尝试执行另一个操作,其中指定了以下内容:
<set-property property="secure" value="false"/>
我还在 jsp 中添加了以下内容:
<sslext:pageScheme secure="false"/>
但我似乎仍然无法切换回 HTTP。
任何有关此主题的帮助将不胜感激。
谢谢, 齿轮。
I'm using the sslext extension for Struts to enable/disable passing data over HTTPS. I've implemented it so that https is only used for credit card processing. Its working fine when switching to https but I cannot get it to switch back to http.
I've tried hitting another action where I've specified the following:
<set-property property="secure" value="false"/>
I've also added the following to the jsp's:
<sslext:pageScheme secure="false"/>
But I still seem unable to switch back to HTTP.
Any help on this subject would be greatly appreciated.
Thanks,
gearoid.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过确保
mapping.findForward(...)
重定向到不受 ssl 保护的操作来实现此目的。让 JSP 页面方案不安全是没有用的,它只意味着如果设置为 true,ssl ext 将在安全通道上链接 jsp 页面。
I've achieved this by making sure that
mapping.findForward(...)
redirects to an action which wasn't ssl secured.It's useless making a JSP page scheme unsecure, it only means that if set to true, ssl ext links the jsp page on secure channel.