Tagged Questions
Quartz.NET is an open source job scheduling library for .NET. A job scheduler is a system that is responsible for executing (or notifying) other software components when a pre-determined (scheduled) time arrives.
31
votes
1answer
9k views
Quartz.net with ASP.NET
I dont 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...
EDIT:
I found this HOW ...
8
votes
3answers
977 views
ASP.NET MVC: How to create a usable UrlHelper instance?
I am using quartz.net to schedule regular events within asp.net mvc application.
The scheduled job should call a service layer script that requires a UrlHelper instance (for creating Urls based on ...
7
votes
3answers
266 views
Quartz.Net - Every 3 weeks on Mon,Tue,Wed
I'm stuck with Quartz.NET cron trigger.
I was able to imlpement all my scenarios apart the one below.
Every X weeks on Mon,Tue,Wed...
I managed to do this
0 31 15 ? * MON#2 *
which triggers ...
7
votes
2answers
103 views
Doing DB Queries Verus Storing Items in A collection?
I am trying to make to make a reminder system and I am using quartz for my scheduling. However I come up with a couple possible ways how to do what I need to do but I am not sure what the best way is ...
7
votes
2answers
1k views
Pros and Cons of running Quartz.NET embedded or as a windows service
I want to add quartz scheduling to an ASP.NET application.
It will be used to send queued up emails.
What are the pros and cons of running quartz.net as windows service vs embedded.
My main concern ...
7
votes
1answer
3k views
Configuring ADOJobStore with Quartz.net
How do you set up a jobstore with Quartz.net. The tutorial they have on the site is not that of help for me.
In this page though there are steps
...
6
votes
6answers
821 views
Ways of scheduling tasks (without writing windows scheduler) in asp.net
I am into shared hosting and they do not allow me to use windows scheduler... So what are the ways of achieving scheduled tasks ie(timed mail) in asp.net... I just saw background process by Jeff ...
6
votes
4answers
380 views
Proper way to dispose of Quartz.NET?
I am using Quartz.NET in an application. What is the proper way to dispose of Quartz.NET.
Right now I am just doing
if (_quartzScheduler != null)
{
_quartzScheduler = null;
}
...
5
votes
2answers
168 views
Quartz, Unity & .NET
is it possible to register a quartz job to always use the same IJob instance injected by DI container Unity? I have a single instance "monitor" of a class Monitor coming from Unity DI, wich I ...
5
votes
1answer
156 views
Quartz.NET - paused jobs
I'm using Quartz.NET in an application I am creating, and I give users the option of pausing the jobs/triggers as required. One issue I have is that if a job is paused when it was due to execute, when ...
5
votes
2answers
235 views
In Quartz.NET is there a way to set a property that will only allow one instance of a Job to run?
I have a service that will run every X minutes. If that job takes longer than X minutes for some unforeseen reason I want to make sure that the trigger doesn't kick off a second instance of this job.
...
5
votes
1answer
375 views
Autofac and Quartz.Net Integration
Does anyone have any experience integrating autofac and Quartz.Net? If so, where is it best to control lifetime management -- the IJobFactory, within the Execute of the IJob, or through event ...
5
votes
4answers
619 views
Quartz.NET, Recur Every x Weeks
i need to implement the following scenario using Quartz.NET:
Recur every n week(s) on:
Sunday and/or Monday, Tuesday, Wednesday, Thursday, Friday, Saturday...
So for example i might select: monday ...
5
votes
2answers
383 views
Handle JobExecutionException in Quartz.net
Probably a stupid question... but here goes anyway...
I have set up quartz, and can schedule jobs, and I can confirm that jobs (implementing the IJob interface) are working. Looking at the ...
5
votes
2answers
327 views
StructureMap returns a disposed nHibenrate session object from thread local scope
[OR] How to define a StructureMap life cycle for UoW to be consumed by http requests and quartz jobs
I have this web application which uses SM for IoC. I am using HybridHttpOrThreadLocalScoped scope ...
5
votes
3answers
1k views
Quartz.net implementation
I am new to the concept: quartz.net.How do I implement it in my web application ?
4
votes
3answers
90 views
What time am I dealing with in Quartz.net?
I am wondering when I set something like this
Trigger trigger = TriggerUtils.MakeDailyTrigger("abc", 5, 00);
I am setting it for 5:00am. Is this 5:00am server time or UTC time?
4
votes
2answers
117 views
Quartz.Net - Every 3 months
I'm trying to call something every 3 months (quarterly) in Quartz.NET (using both stable and latest version 2 which is beta with same results).
I create cron trigger with 0 30 8 3 */3 ? * to be ...
4
votes
1answer
61 views
Quartz.Net - Quarterly starting from today
How do you create a trigger that is triggered every 3 months (quarterly) starting today.
I though i could do something as simple as
tr = TriggerUtils.MakeHourlyTrigger(2190);
// (365 / 4) * 24 ...
4
votes
2answers
222 views
CronExpressions - any librarys out there to generate them/convert them into human readable form?
I am using Quartz.NET, and my scheduler relies heavily on the use of cron expression's - such as the ones detailed on this link:
http://quartznet.sourceforge.net/tutorial/lesson_6.html
Ideally, I'd ...
4
votes
1answer
129 views
Quartz.net: FireAtTime doesn't seem to work as expected
I am trying to implement Quartz.net in one of my projects.
I am using NthIncludedDayTrigger cause I want my trigger to fire every 5 months at a certain time. Here is the code:
NthIncludedDayTrigger ...
4
votes
2answers
517 views
Quartz.NET vs Windows Scheduled Tasks. How different are they?
I'm looking for some comparison between Quartz.NET and Windows Scheduled Tasks?
How different are they? What are the pros and cons of each one? How do I choose which one to use?
TIA,
4
votes
1answer
120 views
Avoiding a quartz shedule miss
I am using quartz.net and it's great. But what happens if my server is down and I miss an event (I am using a database to store quartz events)? I want to make sure events run, even if they are a week ...
4
votes
1answer
1k views
Schedule Windows Service with Quartz.NET
I want to schedule my windows service with Quartz.NET.I tried some examples but,i can't schedule my windows service.How can i do it?
Thanks.
3
votes
2answers
63 views
How the web application to achieve the schedule task on a shared host?
As far as I know, the quartz.net scheduler is started in the global.asax. That's to say, quartz.net scheduler does not work unless someone visits the website. This is not a safe way because the ...
3
votes
3answers
165 views
Where is the documentation for Quartz.NET configuration files?
I can't find documentation anywhere on the syntax for Quartz.NET configuration files. I'd like to learn about
1.) Configuring the service itself
2.) Configuring jobs via the XML scheduler plugin.
...
3
votes
0answers
61 views
Quartz.NET Updating a Calendar after creating Job
I've searched online, but cant find the answer. I'd like to know if I create a Job, JobDetail, and Trigger with a Holiday Calendar (for excluding dates), how can I maintain that calendar? I noticed a ...
3
votes
1answer
143 views
Quartz .NET MakeDailyTrigger
I am using Quartz framework, got bit confused with time generation. This is a simple code which generates daily trigger @ 11:30 am. To test this out, i generated next 100 consecutive firing time using ...
3
votes
1answer
427 views
ASP.Net MVC 3, Ninject and Quartz.Net - How to?
I am now using Ninject 2.2.1.4, with my MVC3, i'm success to config Ninject run with it, but i don't know how to make Ninject run with Quartz.Net in my MVC3
Can anyone help?
3
votes
1answer
177 views
Quartz.net causes .NET CLR LocksAndThreads
We've been using Quartz.net project to control scheduled tasks in one of our windows services.
We've been using it for a while now with no problems but we've recently noticed an issue with .NET CLR ...
3
votes
2answers
2k views
How to schedule tasks using Quartz.Net inside a Windows Service?
I have created a windows service project in VS and in it I configure Quartz.Net to run a task immediately. The code that registers the task runs with no exception, but the task is never executed as ...
3
votes
1answer
1k views
Can quartz.net reconfigure jobs when config file changes?
Im doing a proof of concept with Quartz.Net
A fairly simple scheduling task, the only requirement i have is that a restart of the service it not needed to reconfigure quartz
This is test code
...
3
votes
1answer
237 views
Quartz.NET - getting jobs exception using IJobListener
I'm using Quartz.NET for an application I am creating, and I currently have an IJobListener listening for any errors with jobs, then sending emails off to the administrators. It'd be great if I could ...
3
votes
1answer
201 views
Getting trigger properties in Quartz.NET
I need to be able to get the properties (i.e. cron expression or type of simple trigger (daily, hourly, etc) and it's parameters) of a trigger in C#, and display them and also let them be modified. I ...
3
votes
2answers
2k views
Quartz.net setup in an asp.net website
I ve just added quartz.net dll to my bin and started my example... How to call a c# method using quartz.net based on time?
using System;
using System.Collections.Generic;
using System.Linq;
using ...
3
votes
2answers
635 views
Add Quartz.net job without starting the scheduler
Is there any way of adding jobs to Quartz.Net jobstore without starting up a scheduler instance?
3
votes
2answers
670 views
Quartz.Net and dependancy injection or calling a job from external dll at runtime
I am trying to evaluate Quartz.Net.
I tested it with adding a class which implemented IJob in the executing assembly and it worked.
Now I want to develop an Job Scheduler in which I can add jobs at ...
2
votes
2answers
69 views
Use Quartz.NET to monitor Mysql table and execute some stuff
Is it possible to accomplish the following using Quartz.NET :
i have a mysql table named "VODContent" with a field "StreamAt" - datetime - is it possible to monitor this table and 5 minutes before ...
2
votes
1answer
63 views
Is it possible to debug the Quartz.NET Windows service?
I've got my app code in one solution and the Quartz.Net code in another. My app code connects to the service and registers a job but no break points are hit in the Quartz.NET solution despite the ...
2
votes
1answer
139 views
Scheduling jobs with high CPU load in Quartz.NET
I'm using Quartz.NET to schedule a job which loads a bunch of data from external sources and persists in a database. After downloading them some processing have to be on them too, which will create ...
2
votes
1answer
74 views
Does Quartz.NET trigger a misfire if the Windows service was stopped?
I'm using the Quartz.NET dll with AdoJobStore inside a Windows service. I noticed that the tutorial isn't very clear about misfires.
The question: Is a misfire supposed to be triggered if the ...
2
votes
2answers
170 views
Injecting properties into a QuartzJobObject
Am I right in thinking that my QuartzJobObject can't have any DAO's or other Spring-managed objects injected into it?
Was hoping I could do something like this (orderService is what I want to ...
2
votes
1answer
213 views
Scheduling Dependent Jobs in Quartz.Net
I need some help. I am trying to figure out how to schedule jobs in Quartz.Net. Jobs in Quartz correspond to tasks in my Web Application, which are each apart of a Job in my Web Application. I want ...
2
votes
2answers
322 views
How to get details of all scheduled jobs and triggers in Quartz.NET c#
I have to create administration page of all scheduled jobs and triggers. How can i get details of running jobs and triggers in Quartz.NET? Can I pause/stop or update jobs? Is there any sample code?
2
votes
1answer
393 views
Any open-source admin UI for quartz.NET
Is there available any open source admin interface to add/edit/delete jobs & triggers in QUARTZ.NET scheduler?
2
votes
1answer
178 views
Could not load job assembly error in Quartz.NET
I'm using Quartz.NET scheduler as a stand-alone windows service while from an ASP.NET app I sechedule jobs. I've a separate job assembly and i'm getting the following error
Could not load file or ...
2
votes
1answer
217 views
Am I registering the ObjectContext using AutoFac correctly?
I have a windows service and I want to make sure that my EF ObjectContext is disposed of between each time its runs. The service runs longer each time it executes. It seems like the ObjectContext ...
2
votes
1answer
197 views
Alternative to polling for job scheduler
We've got need for a job server here at work and I'm currently playing with Quartz.net, but the idea of creating my own appeals to me. At the very least understanding what Quartz.net may be doing ...
2
votes
0answers
286 views
Using Quartz.Net embedded into a Windows Service
I Am trying to use Quartz.Net so as to Schedule Jobs Within a Windows Service that I developped.
I included the following code on the Onstart Method, scheduler is a Class attribute
private readonly ...
2
votes
1answer
289 views
Quartz vs “Reactive Extensions”
I am looking for a scheduling library for C# and for a long time I though the "only" option is Quartz.NET which is quite robust and work just fine. But when I found "Reactive Extensions" (RX - ...