gpt4 book ai didi

powershell - 报表服务器超时问题。自动刷新报表管理器URL

转载 作者:行者123 更新时间:2023-12-03 00:15:46 28 4
gpt4 key购买 nike

我在使用报表服务器时遇到问题。打开报告管理器网址需要很长时间。因此,报表服务器上发生超时问题。

自动启动报表管理器URL的最佳方法是什么?

我最初使用的是PowerShell脚本和Task Scheduler,它们会每周自动运行该脚本。

但是,我找不到可以执行此操作的PowerShell脚本。有任何想法吗?

最佳答案

尝试更改asp.net项目的web.config

<system.web>
<sessionState mode="InProc" cookieless="false" timeout="9999"/>
</system.web>

这可能会比Powershell脚本有用
并实现一个可能每5秒调用一次的处理程序脚本
像使用jquery
public class SesstionHandler : IHttpHandler,IRequiresSessionState {

public void ProcessRequest (HttpContext context) {
context.Session["KeepSessionAlive"] = DateTime.Now;
}

public bool IsReusable {
get {
return false;
}
}

}

并在页面级别添加此jQuery
$(function () {
setInterval(KeepSessionAlive, 60000);
});

var i = 0;
function KeepSessionAlive() {
i = i + 1;
$.post( "SesstionHandler.ashx" , null, function () {
.. some code here if needed
});
}

关于powershell - 报表服务器超时问题。自动刷新报表管理器URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34206181/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com