マシンでデバッグしているときに、httpModule を IIS に発行した後、正常に起動するようになりました。実行されません。何が間違っていますか? 何か不足していますか?
これはweb.configでどのように見えるかです
<httpModules>
<add type="MyApp.Web.Mvc.Modules.Scheduler" name="Scheduler" />
</httpModules>
スケジューラは次のようになります
public class Scheduler : IHttpModule
{
private static readonly object Job;
private static Timer timer;
static Scheduler()
{
Job = new object();
}
void IHttpModule.Init(HttpApplication application)
{
try
{
if (timer == null)
{
var timerCallback = new TimerCallback(ProcessJobs);
const int startTime = 10 * 1000;
const int timerInterval = 60 * 1000; // 1 minute
timer = new Timer(timerCallback, null, startTime, timerInterval);
}
}
catch (Exception ex)
{
//exception code here
}
}
public void Dispose()
{
}
protected void ProcessJobs(object state)
{
try
{
// This protects everything inside from other threads that might be invoking this
// which is good for long running processes on the background
lock (Job)
{
//My Stuff
}
}
catch (Exception ex)
{
//exception code here
}
}
}