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

scehdule Quartz.net next time based on result of execution

I am looking at Quartz in combination with Atlas for a scheduled service. I have a program that runs once a day (scans my mailbox for a specific mail). If there is a result I want it to run again the next day. If there are no results, the job should…
Mounhim
  • 1,674
  • 1
  • 17
  • 32
0
votes
2 answers

Access JobDatamap before execution

Is there a way to retrieve the values of variables in a JobDataMap before the job executes? I am basically trying to display the job's next chained job name in a view. The name is in the Datamap.
Keysharpener
  • 486
  • 3
  • 14
0
votes
0 answers

Calling WebAPI from a scheduled job using quartz.net

I have a nightly job run setup with quartz.net this all works fine but when I get to the part where I call ± 15 WebAPI's to consume them and publish the results in JSON files via FTP to the server i get into trouble. The WebAPI's don't fire I think…
0
votes
2 answers

Quartz.net service, Scheduler has been disconnected or does not exist at server

I'm using Quartz.net 2.2 installed as service. The jobs are stored in ms sql express, using AdoJobStore. The jobs are managed from an asp.net 4 website. Everything works fine, as expected: the service is running, the jobs are stored and triggered…
zed
  • 2,298
  • 4
  • 27
  • 44
0
votes
1 answer

Quartz.net scheduler going to standby

I'm using quartz .net server embedded in my asp.net application but is always turning into standby mode. Even with a scheduled cron job in NORMAL mode. Those are my scheduler properties: var properties = new NameValueCollection(); …
joaofs
  • 486
  • 1
  • 7
  • 17
0
votes
1 answer

how to combine cron expressions?

I have a task which requires to be executed every Thursday, but if the day is a speical holiday such as Christmas, the task should be changed to another day( wednesday or friday), so I get is a general expression plus some special dates, how should…
Kai Zhang
  • 23
  • 6
0
votes
1 answer

Quartz.net periodically recycle IIS application pool

I have one Quartz.net window service and asp.net web application hosting in same server. Quartz.net window service periodically recycle IIS application pool and web application user got session time out. If I stopped the Quartz.net window service…
Alex Aung
  • 2,637
  • 5
  • 34
  • 63
0
votes
1 answer

How does one configure Quartz.net to run a job when another job hasn't run for a period

Assume I have two Quartz.net jobs that downloads a CSV file with a delta of changes for a period (e.g. 24h) and then imports the data (called IncrementalImportJob) downloads a CSV file with a all the records and then imports the data (called…
bloudraak
  • 5,902
  • 5
  • 37
  • 52
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
2 answers

Quartz.net Setup for stored procedures and more

Quartz.net and me don't seem to think the same way. Please help. I'll have Quartz running as a Windows Service. I'll have an Ado Jobstore setup on my SQL server. I'll have the connection string setup that allows Quartz to access the jobstore.…
Kane Jeeves
  • 475
  • 2
  • 9
  • 19
0
votes
3 answers

Delay crone trigger (diffrent first start date) in quartz

I've almost finished simple application in c# with quartz which run some SQL queries periodically. I have a question, is it possible to create cron trigger which start job at specific date and after this date do some jobs periodically. here is my…
JacekRobak85
  • 93
  • 1
  • 10
0
votes
1 answer

Quartz.net with MVC

I am initializing Quartz inside my Application_Start() in Globals.asax.cs as followed: // construct a scheduler factory ISchedulerFactory schedFact = new StdSchedulerFactory(); IScheduler sched = schedFact.GetScheduler(); …
Pacman
  • 2,183
  • 6
  • 39
  • 70
0
votes
2 answers

How do I manually alter the HttpRequest.ApplicationPath property?

I have an issue where I am creating a Quartz.NET job (using a copy of Quartz.NET that is embedded in the web application my team is developing, if it matters) that sends an e-mail to certain people containing a hyperlink to a controller/action…
user2154603
  • 5
  • 1
  • 4
0
votes
1 answer

Using Quartz.NET in Orchard CMS

I'm building a Orchard CMS website project and I need schedule to do some jobs which data are stored in database recurrently, so I use Quartz.NET in Global.asax of Orchard.Web as follows: protected void Application_Start() { …
Leo Le
  • 815
  • 3
  • 13
  • 33
0
votes
2 answers

Quartz: Why does this Trigger not fire?

I am using quartz.NET in my project. I have the following problem. I want to run a Scheduled task everyday at 23 o'clock and I am using this code to do that: public class HelloJob : IJob { public void Execute(IJobExecutionContext context) { …
Sirwan Afifi
  • 10,654
  • 14
  • 63
  • 110