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
2
votes
0 answers

What to check in my quartz.net job dispatcher for timezone funkyness

Using Quartz.net Server version 2.1.2 which I upgraded to from version 2.0 because of a lack of support for UTC timezone offsets. Jobs are not being sent at the time we specify, and it is seemingly because of timezone offsets. I have three job…
Shawn J. Molloy
  • 2,457
  • 5
  • 41
  • 59
2
votes
1 answer

How to create quartz job that will runs every N seconds even if job takes more time

What I'm trying to achieve: I have a secondly trigger that fires every 5 secods, and stateful job, that takes sometimes more than 5 seconds (7 for example) and what I have now start: 00:00:00 end : 00:00:07 start: 00:00:07 < right after previous…
Andriy Khrystyanovich
  • 1,422
  • 3
  • 19
  • 38
2
votes
1 answer

SchedulerException with Simple Job

I'm trying to get started with Quartz.Net 2.0. A very simple appearing test application is failing with a SchedulerException Trigger's related Job's name cannot be null The code is adapted from the Version 2.0 Migration Guide ISchedulerFactory…
Eric J.
  • 147,927
  • 63
  • 340
  • 553
2
votes
1 answer

Scheduling Cron Jobs With Quartz.NET

I'm trying to schedule some jobs using Quartz.NET but I cannot get it working. I tried the following code but nothing happened when the specified time was met. public void Test() { ISchedulerFactory schedulerFactory = new…
Kassem
  • 8,116
  • 17
  • 75
  • 116
2
votes
1 answer

When migrating from Quartz.Net 1.x to 2.x will I have to change the way my scheduler is configured and started?

Here is how I configure and start my Quartz.Net scheduler in 1.x: properties["quartz.scheduler.instanceName"] = instanceName; properties["quartz.scheduler.instanceId"] = "AUTO"; properties["quartz.threadPool.type"] = "Quartz.Simpl.SimpleThreadPool,…
Dean Kuga
  • 11,878
  • 8
  • 54
  • 108
2
votes
1 answer

What is the second value of quartz.net configuration job-type parameter?

I'm trying to use Quartz.net in my web project. I configured my application like this: CRMMoreThanOneJob jobGroup1 ReportingPortalBLL.Jobs.CRMCalledMoreThanOneJob,…
2
votes
2 answers

Quartz.NET executing job only once

I am trying to make simple scheduled job in Quartz.NET 2.0 I've read about a similar problem but it didn't work out for me. The problem is that the job gets executed only once after the StartAt trigger. Here is my code: public EntityMappingSvc() { …
GxG
  • 4,491
  • 2
  • 20
  • 18
2
votes
1 answer

Quartz.Net 2.0.1 Trigger

I have a web application and I am trying to setup a trigger to start when the application has started and then trigger every 5 minutes Everything is within Global.asax - seemed like the right place to put it: public class Global : HttpApplication { …
Matt
  • 2,691
  • 3
  • 22
  • 36
2
votes
1 answer

Quartz.Net - How to assign trigger when using JobFactory

ok, this is a newbie question, i searched through the net couldn't found any clue, here is my problem: from the example usualy trigger and job scheduled by using IScheduler.ScheduleJob(job, trigger) now i used JobFactory i tried to use…
bonjorno
  • 201
  • 2
  • 12
2
votes
2 answers

Job Scheduler inside of MVC3 Website

I'm looking for some guidance in getting a Job Scheduler setup for use INSIDE of my MVC3 website. I've been looking at Quartz.NET for this, but am having trouble finding guidance online as far as the setup to make sure it's running when the website…
Jared
  • 5,840
  • 5
  • 49
  • 83
2
votes
2 answers

How to create a DateTimeOffset set to Midnight in Pacific Standard Time

I am using Quartz.NET(http://quartznet.sourceforge.net/) and I ma trying to set start date at midnight. But I have problem with creating this date. This application will be standing on different servers in different timezones. But I want this time…
Marta
  • 2,857
  • 13
  • 46
  • 67
1
vote
1 answer

Quarz.net Windows service can't cofigure jobs via xml config file

I have a windows service which (at least used to) creates jobs from the xml config file. However I can't get it working. This is my xml (jobs.config)
Marko Juvančič
  • 5,792
  • 1
  • 25
  • 41
1
vote
0 answers

Quartz job going into Error state on adding a new job while some instance running with old code

I have implemented Scheduler quartz with .net and having an HA environment where multiple instances of scheduler are working. While upgrading my instances with a new code having new jobs created, the newly added job goes into ERROR state because of…
Sumit Gupta
  • 569
  • 1
  • 11
  • 33
1
vote
1 answer

Quartz.NET 2.6.1: Multiple Triggers for same Job trigger at same time, but need only one trigger to occur

I have Jobs with multiple Triggers. In some cases, the Triggers will overlap. When Quartz.NET determines the overlapping Triggers need to be triggered, the IJob.Execute(IJobExecutionContext context) method is executed for each Trigger. Is there a…
Rob G
  • 25
  • 4
1
vote
1 answer

In Quartz.net, how can I delay all scheduled jobs by a certain time span?

I am using Quartz.net to schedule various API calls. The API I am using restricts the number of requests that can be made per time period and if that is exceeded, then my account is penalized for the next minute (no requests can be made). If I ever…
K. Meke
  • 433
  • 2
  • 14