如何防止IceFaces“连接丢失”问题
我将 IceFaces 1.8.2 与 Tomcat 6 一起使用。
我不定期地收到消息“连接丢失”,并可以选择重新加载页面。这对于公共网站来说是不可接受的。
我现在的问题是这种方法是否有意义:
Ice.onConnectionLost('document:body',
function() {
window.location.href=window.location.href;
});
这个想法是在连接问题时重新加载当前页面。 oyu 认为这会解决问题还是会产生其他问题(我假设重新加载当前 url 是可以的并且不会导致任何工作流程问题)。
谢谢。
I'm using IceFaces 1.8.2 with Tomcat 6
On a irregular basis I get the message "Connection is lost" with the option to reload the page. This is not acceptable for a public site.
My question now is if this approach makes sense:
Ice.onConnectionLost('document:body',
function() {
window.location.href=window.location.href;
});
The idea is to reload the current page on connectin problems. Do oyu think this would solve the issue or could this create other problems (I assume that reloading the current url is OK and does not cause any workflow issues).
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请阅读此处 Icefaces 文档 或任何 1000 多个相关文档论坛。
如果模式弹出窗口“不可接受”,请尝试使用 OutputConnectionStatus 组件
Read here Icefaces Documentation or any of the 1000+ related posts in the forums.
If it's the modal popup that's 'not acceptable', try using the OutputConnectionStatus Component
尝试将所有这些
并使用
希望它会有所帮助
Try to put all of those
and use
Hope it'll help