Questions tagged [quartz.net]

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 predetermined (scheduled) time arrives. NOTE: this tag is for questions about the .NET version; for Java questions please use [quartz-scheduler] instead.

Quartz.NET is an open-source job scheduling service for .NET.

Quartz.Net can be used to create schedules for jobs at any scale with support for things like transactions and clustering. Quartz.NET is a port of the Java library, Quartz.

1484 questions
0
votes
1 answer

Fluent Nhibernate and quartz

I'm building a asp.net mvc web application. And I'm running quartz in the asp.net context. I'm using fluent nhibernate for my or mappings. I'm building a simple job that goes writes an entry in the database. public void…
Emil C
  • 1,315
  • 4
  • 15
  • 27
0
votes
1 answer

running IStateful jobs per machine in a cluster with Quartz.net

I am running a cluster of quartz.net services all reading of a standard AdoJobStore. The behaviour I'm looking for is explained in the title, I'm wanting to run Stateful jobs per machine in the cluster. Currently I believe a stateful job will run…
Allen Firth
  • 138
  • 1
  • 10
0
votes
1 answer

Quartz.Net GetNextValidTimeAfter() throws exception for DST

Currently I am using Quartz.Net Scheduler to schedule different jobs. In the UI User can configure the Frequency i.e. Weekly and Day of Week and Time, to trigger the Job. Once the User can configure these proprieties I am currently displaying the…
Santosh Panda
  • 7,235
  • 8
  • 43
  • 56
0
votes
1 answer

Data prefetching using scheduled tasks in an ASP.NET environment

We're developing an ASP.Net application that retrieve data from WCF services. The user interface (develped with JQM and ASP.NET) shows a loading panel while the request is processed and data are server-side paged so our db returns only first n…
0
votes
1 answer

Schedule Task at Interval based on Start time in Quartz

I am new to Quartz and want to use it to schedule scripts in SQLServer using a service for clients using SQL Server Express. I need a user to be able to schedule a task to run, say every second week starting from a particular date. eg: StartDate =…
Molloch
  • 2,261
  • 4
  • 29
  • 48
0
votes
1 answer

Quartz.Net DailyTimeIntervalTriggerImpl with different time zone

Right, this is a bit of a tricky one. I would like to create a daily trigger (DailyTimeIntervalTriggerImpl) so that it runs everyday from 07:30 to 23:45. The problem is, it must be run in the users specified timezone, in this case, lets say Tokyo…
Chuen Lee
  • 353
  • 4
  • 17
0
votes
2 answers

Execute a job every N weeks between X and Y hour

I am using Quartz.NET library and I need to execute a job every two days and repeat it every two hours between 22 PM and 6 AM. I don't know how to achieve this. I tried all of triggers combining them with calendars to exclude other hours, but…
vanilla161
  • 375
  • 1
  • 6
  • 13
0
votes
1 answer

Can scheduled web request be authorized by MVC controllers?

My web app has to do some calculations in the background. I've investigated multiple solutions and I would like to go for business logic instead of a SQL job that triggers all the calculations. After a few days of research I'm still not convinced…
Bastaspast
  • 1,022
  • 8
  • 9
0
votes
1 answer

Changing the name of a Quartz.NET job or trigger before scheduling

This is probably a simple question, but I am pretty new to using Quartz.NET, but how do you change the name of a job or trigger before scheduling? I am basically making a template job in a support class, and then using it in my main program that…
Xantham
  • 1,829
  • 7
  • 24
  • 42
0
votes
1 answer

Multiple Schedulers or Multiple Job Triggers

I am using Quartz.net for my job scheduling. I have different databases for my application and each needs to be considered for job processing. I have two questions: Can I use same scheduler for all my databases with different job triggers or one…
Vinoth
  • 2,419
  • 2
  • 19
  • 34
0
votes
1 answer

Quartz.net schedule thow exception on windows service

my code works on form application well but same code doesnt work on windows service ! OnStart protected override void OnStart(string[] args) { try { // First we must get a reference to a scheduler ISchedulerFactory sf =…
Mennan
  • 4,451
  • 13
  • 54
  • 86
0
votes
2 answers

Is it possible to run a quartz.net job on the UI thread?

I'm using Watin for browser testing, which has to run on the UI thread. I want to schedule a job using Quartz.NET but can't work out a way to run it on the UI thread (using a WPF application) Any ideas?
Chris Haines
  • 6,445
  • 5
  • 49
  • 62
0
votes
1 answer

trigger not fire in Quartz.net web site

Possible Duplicate: Quartz.Net scheduler works locally but not on remote host when i use this code: job code: Public Class ImportJob Implements IJob Public Sub Execute(context As IJobExecutionContext) Implements IJob.Execute '''some code End…
0
votes
1 answer

How to use cron misfire-instruction FireOnceNow with AdoJobStore in Quartz.NET 2.0?

I am using a cron trigger with misfire-instruction set to FireOnceNow in quartz.net-2.0 set up with AdoJobStore and using XMLSchedulingDataProcessorPlugin. cron-expression is set so the job will trigger every 1 minute: 0 0/1 * * * ?. The job…
0
votes
1 answer

JobDataMap for trigger in Quatz jobs xml

I am running into an issue setting the job data map for the trigger in Quartz. I know it's possible pro grammatically, but I need to do it in the xml jobs file. However, every time I try to add it to the trigger, it says that job-data-map is…
Thinking Sites
  • 3,494
  • 17
  • 30