Quartz Scheduler jobs dont work same times. Allsways work only one
Problem: My jobs doesn’t work same times. Allways work only one. What is wrong in code.
Problem: My jobs doesn’t work same times. Allways work only one. What is wrong in code.
I don’t know how to use Quartz.dll in ASP.NET. Where to write the code for scheduling jobs to trigger mail every morning? Please if some body knows about it plz help me…
I’ve just added quartz.net dll to my bin and started my example. How do I call a C# method using quartz.net based on time?
I’m running a web app on IIS 7.5 and it needs to recycle occasionally (otherwise memory usage gets out of handing, something i’m looking into!).
INTRODUCTION I’m using Quartz.Net on an ASP.Net framework 4, webforms web site. Basically, the user should have the hability to fire manually a batch script that asynchronously processes thousands of records stored on a database. The user can stop or pause at any time, adjust some variables, and continue if needed with the process (remaining … Read more
I am planning to write a ASP.NET page to trigger the job on demand. Currently, I am using SimpleTrigger class to trigger the job but none of the __Trigger class supports object type as value in JobParameters and it has come to my knowledge that WCF Tcp binding is used under the hook to pass the parameters to job scheduling engine. I would like to know how to pass custom object (serializable) as job parameters.
Thanks for your advice!
I have a timed quartz.net job working fine on my dev machine, but once deployed to a remote server it is not triggering. I believe the job is scheduled ok, because if I postback, it tells me the job already exists (I normally check for postback however). The email code definitely works, as the ‘button1_click’ event sends emails successfully.
I am getting this error
“could not load type ‘System.Runtime.CompilerServices.ExtensionAttribute’ from assembly ‘mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089’.”
Can someone advise on what I am doing wrong.
I am trying to setup quartz so that on startup it will read an xml config file. Inside the file there is a job that activates my HelloEmail_Job.cs class (it is created correctly, extending IJob with the logic in the execute method). The xml also has a cron trigger for the job that will fire every minute (purely for testing).
I am working on making a scheduler, just like Windows Scheduler using Quartz.Net.