zoukankan      html  css  js  c++  java
  • webserivic定时器自定停止的解决办法(转自别人的帖子)

    
    
    我是在.net framework中的,有一个Global.asax全局应用程序文件,帖代码:
    public class Global : System.Web.HttpApplication
    {
    double iTimerInterval;
    System.Timers.Timer timer = new System.Timers.Timer();
    SmsRun smsRun = new SmsRun();
    object objLock = new object();
    protected void Application_Start(object sender, EventArgs e)
    {
    //在应用程序启动时运行的代码
    //在新会话启动时运行的代码
    SetAccount();
    timer.Start();//定时器开始
    }

    protected void Application_End(object sender, EventArgs e)
    {
    timer.Stop();
    }

    private void SetAccount()
    {
    double.TryParse(ConfigurationManager.AppSettings["TimerInterval"], out iTimerInterval);
    timer.Interval = iTimerInterval;
    timer.Elapsed += new System.Timers.ElapsedEventHandler(getMessage);
    //getMessage是个方法(略)
    }

    解决::::::::
     
    有可能是由于timer已经被回收掉了 你是在什么环境下面winform? webform? 

    经过你的补充我看明白了 是这样的 由于你的应用程序在特定空闲时间之后相应的w3wp辅助进程会被回收掉 所以你的timer自然没有作用了 你可以查看iis 应用程序池的属性 切换到性能选项卡空闲超时 默认的时间是20分钟 也就是说如果20分钟内你的网站没有任何请求那么就会造成回收
    
    
  • 相关阅读:
    COGS 859. 数列
    9.7noip模拟试题
    hash练习
    9.6noip模拟试题
    9.5noip模拟试题
    poj 2117 Electricity
    洛谷P1993 小 K 的农场(查分约束)
    9.2noip模拟试题
    洛谷 P1273 有线电视网(dp)
    面试题收集
  • 原文地址:https://www.cnblogs.com/houzf/p/5582677.html
Copyright © 2011-2022 走看看