如何防止IceFaces“连接丢失”问题

发布于 2024-11-07 22:54:00 字数 367 浏览 0 评论 0原文

我将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

这样的小城市 2024-11-14 22:54:00

请阅读此处 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

甜心小果奶 2024-11-14 22:54:00

尝试将所有这些

Ice.onSessionExpired('document:body', function() {
    location.reload(true);
});
Ice.onServerError('document:body', function() {
    location.reload(true);
});
Ice.onConnectionTrouble('document:body', function() {
    location.reload(true);
});
Ice.onConnectionLost('document:body', function() {
    location.reload(true);
});

并使用

<ice:outputConnectionStatus styleClass="navConnectionStatus" displayHourglassWhenActive="true" showPopupOnDisconnect="false"/>

希望它会有所帮助

Try to put all of those

Ice.onSessionExpired('document:body', function() {
    location.reload(true);
});
Ice.onServerError('document:body', function() {
    location.reload(true);
});
Ice.onConnectionTrouble('document:body', function() {
    location.reload(true);
});
Ice.onConnectionLost('document:body', function() {
    location.reload(true);
});

and use

<ice:outputConnectionStatus styleClass="navConnectionStatus" displayHourglassWhenActive="true" showPopupOnDisconnect="false"/>

Hope it'll help

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文