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

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
1 answer

Quartz.Net job doesn't fire continuously

I have a job scheduled in Application_start event using quartz.net, the trigger is fired every 1 min given by the variable repeatDurationTestData = "0 0/1 * * * ?"; The triggering starts when I first open the site, But stops after some random time…
Karthik Ganesan
  • 4,142
  • 2
  • 26
  • 42
0
votes
1 answer

Quartz Scheduler not working in multithreaded service

I have a piece of code which will create jobs using Quartz. This code will be called by multiple threads ISchedulerFactory fac = new StdSchedulerFactory(); sched = fac.GetScheduler(); // schedele job sched.ScheduleJob(job1,…
0
votes
1 answer

Email schedule with Quartz + asp.net

I am using Quartz to do a simple mail sending test as shown below, somehow in the trace log, I am getting this error: 12:42:00 [ServerScheduler_Worker-7] DEBUG HelloWorldQuartzDotNet.HelloWorldJob - *** Failed: Value cannot be null. Parameter name:…
k80sg
  • 2,443
  • 11
  • 47
  • 84
0
votes
1 answer

Does quartz requires administrator account in order to fire triggers?

I have a windows service which uses quartz.net for job scheduling. Service works just fine on my local machine. But when deploy it to the server and run it as network service or any other defined user, the triggers won't fire. When I set the service…
ayk
  • 1,407
  • 2
  • 19
  • 26
0
votes
1 answer

Pass a C# dynamic object to a method that takes an IDictionary

Right now, I'm doing this var data = new JobDataMap(new Dictionary { {"obj", "stringify"} }); But I want to do this: dynamic d = new { obj = "stringify" }; var data = new JobDataMap(d); Is there some secret syntactical sugar that…
Caleb Jares
  • 6,163
  • 6
  • 56
  • 83
0
votes
2 answers

Get the currently executing TRIGGER_NAME in Job execute method

i am new to Quartz , i have populated the database with my job details , and triggers .What i want to do is get the currently executing trigger's TRIGGER_NAME value in the Job's execution .How do i do this ? I want to use the trigger name to search…
luxury
  • 53
  • 1
  • 6
0
votes
1 answer

Running Quartz.Net jobs concurrently across multiple Azure instances

I am putting together a system that needs to scale out scheduled work. I am using Quartz.Net to schedule multiple jobs via CRON triggers. The design of the jobs is such that they are safe for concurrent execution across multiple Azure role…
Rory Primrose
  • 633
  • 4
  • 10
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

Quartz not installing for Windows 8 Metro App Project

I have a problem with Quartz .Net library. I have made a research for best C# job scheduler and found out that Quartz is the best option. However, I cannot make it work with Windows 8 project. I am using Visual Studio 2012. The error I get from…
VsMaX
  • 1,685
  • 2
  • 16
  • 28
0
votes
2 answers

Adding assembly instruction in WCF service

I am a novice with the use of Quartz.net, and my question is the following: I have created a WCF server that includes an interface with the operations that the scheduler can do, and a class that implements the interface in which is allocated the the…
0
votes
1 answer

Quartz.net scheduler is not working

I'm using Quartz.net to set up a scheduler that send out email everyday at 15.59 o'clock. And this what I used: 0 59 15 * * ? but it never fired. To find out whether my database consists data that will fire the scheduler, I used 0 0/1 * * *…
EngLoon
  • 17
  • 1
  • 8
0
votes
1 answer

Quartz.net Scheudular in MVC 3

Hey Friend i am using Quartz.net for scheduling jobs in mvc3 application.I wrote a sample to code to scan file in the another server. It was working fine while i was doing in my local machine. Than i published the application in my local and tested…
Nhuren
  • 503
  • 2
  • 10
  • 29
0
votes
1 answer

quartz.net recurring scheduled task to not run unless the previous instance has completed?

I've just started using Quartz.net. I was able to get it to run by adding the following to my app.config
Kyle
  • 17,317
  • 32
  • 140
  • 246
0
votes
1 answer

How do I create more than one instances of the Quartz.Net scheduler?

Is it safe to run multiple instances of the quartz.net scheduler? If so, how do I do it?
Candy Chiu
  • 6,579
  • 9
  • 48
  • 69