Questions tagged [quartz.net-2.0]

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. Version 2.0 with many Breaking Changes to Version 1.0 was released on April 9, 2012.

89 questions
0
votes
1 answer

Quartz.net server encounters two jobs with same name?

What happens when the Quartz.net server (running as a Windows service) encounters two jobs with identical names and groups? For example: SampleJob DEFAULT
Neha Agrawal
  • 155
  • 1
  • 1
  • 13
0
votes
1 answer

Quartz.net - Issues with Adjusting and Speeding up SystemTime causing Misfires

For testing reasons I want to be able to adjust what time Quartz.Net currently thinks it is so I do not necessarily have to wait hours, days, or weeks in order to check that my code is working. For this purpose I created the following simple…
Sean
  • 83
  • 1
  • 7
0
votes
2 answers

Custom Quartz.Net trigger

I would like to implement my own custom trigger. the main purpose of the trigger twice: on start date and end date (think of it as on/off switch, "on" state and start date and "off" state on end date). What is best way to achieve…
Amr Ellafy
  • 730
  • 8
  • 26
0
votes
1 answer

AutoMapper and Quartz.Net server - missing type map configuration

I'm attempting to use AutoMapper within Jobs hosted by Quartz.Net server. At service startup, I load all the mapping profiles, one of which has: Mapper.CreateMap(); In the Job, I…
Phil Boyd
  • 380
  • 3
  • 17
0
votes
1 answer

Scheduling Jobs using Quartz - Need Opinion

This is my requirement. Main Job: Job1 (Scheduled to run every 5 mins) Subsidiary Jobs: Job2, Job3, Job4, Job5, etc., (All subsidiary jobs will have same definitions but only JobData will differ) During every execution of "Job1" one subsidiary job…
wesfaith
  • 157
  • 1
  • 6
0
votes
0 answers

Quartz Fire Time is off by an hour

I recently upgraded from 1.x to the latest version 2.1.2. I ran the db scripts and made the necessary code changes and we're just testing it now. Everything seems to work as expected with one odd exception. We have a little UI that we query the…
snappymcsnap
  • 2,050
  • 2
  • 29
  • 53
0
votes
1 answer

Multiple Quartz.NET scheduler services and single web-app

I have a scenario where I can have one-to-many Quartz scheduler instances running on a single server. Basically you can envision it as each department within the company getting it's own scheduler instance. Each scheduler is backed by it's own…
snappymcsnap
  • 2,050
  • 2
  • 29
  • 53
0
votes
2 answers

Build simple job trigger in Quartz.net 2.1.x

What is the easiest way to build trigger for a job with given interval as TimeSpan and specified DayOfWeek in 2.1.x versions?
Bogdan Dudnik
  • 413
  • 2
  • 7
  • 19
0
votes
1 answer

How to get JobDetails/Triggers created by instances of zero thread scheduler with different names?

I'm migrating from Quartz.net 1.x to 2.x and for some reason the instance name of the scheduler that created job/trigger now appears to be very important... Column SCHED_NAME was added to most of the quartz tables and it apperas there is no way to…
Dean Kuga
  • 11,878
  • 8
  • 54
  • 108
0
votes
1 answer

Unit Testing: Quartz.net Fire trigger on demand

I am doing a Unit Testing for a scheduled job, I am using Quartz.net, I am new to this library. I need to force the trigger to fire on demand, so that the job get executed and I can retrieve the test results. I was using a SimpleTriggerImpl, and I…
Miguel Marques
  • 2,386
  • 1
  • 20
  • 31
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
2 answers

Quartz.net in WCF

I have a service: [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)] [ServiceBehavior(InstanceContextMode = InstanceContextMode.Single)] public class PremieraInteraction : ServiceInit,…
user1260827
  • 1,498
  • 6
  • 31
  • 53
0
votes
3 answers

Quartz.Net JobExecutionContext missing referance?

I started to implamenet first sample on quartz.net 2.0.1 but it gives an error. I created an asp.net web aplication called QuartzSample my simple code: using System; using System.Collections.Generic; using System.Linq; using System.Web; using…
Mennan
  • 4,451
  • 13
  • 54
  • 86
0
votes
2 answers

Datetime and offsets in .net

How can I schedule a background job to start every day at 9pm in Colombian time? Im using quartz.net public class Program { static void Main(string[] args) { // construct a scheduler var schedulerFactory…
nacho10f
  • 5,816
  • 6
  • 42
  • 73
1 2 3 4 5
6