I am developing a web application where I have implemented job scheduler using Global.asax. I have used thread to start the job for particular duration.

It works fine if I run the application through visual studio. But when I publish and deploy it to the server the thread doesn't work.

Please help me to resolve this issue. Is there any alternative for this.

Please find the sample code below,

protected void Application_Start()
    {
        Thread thread = new Thread(new ThreadStart(ThreadFunc));
        thread.IsBackground = true;
        thread.Name = "ThreadFunc";
        thread.Start();
    }

    protected void ThreadFunc()
    {
        System.Timers.Timer t = new System.Timers.Timer();
        t.Elapsed += new System.Timers.ElapsedEventHandler(TimerWorker);
        t.Interval = 10000;
        t.Enabled = true;
        t.AutoReset = true;
        t.Start();
    }

    protected void TimerWorker(object sender, System.Timers.ElapsedEventArgs e)
    {
        //work args
    }

Thanks,

Vijay

link|improve this question

71% accept rate
can you share your code ?? – Ravi Jan 20 at 16:04
@Ravi - Please find edited sample code. – Vijay Balkawade Jan 20 at 16:25
seems good. may be IIS Issue?? why cant u use Services, instead of threads?? as @MK. anwserd in his link . – Ravi Jan 20 at 16:37
feedback

2 Answers

up vote 0 down vote accepted

I don't think spawning a thread in global.asax is a good idea. Please see this question for better solutions.

link|improve this answer
Now I have written a windows service to perform scheduler job. – Vijay Balkawade Jan 23 at 7:14
feedback

If there is no activity on your site for a period of time, it is shut down automatically.

To circumvent this, google "Keep asp.net site alive"

But you'll find a bunch of duct-tape like hacks. I would change the architecture.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.