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

Incompatible version types for quartz and commons logging

I have tried many different combinations of both the DLLs. Its always throwing this error. How can I overcome this error? Please advice.
Kalpa-W
  • 348
  • 3
  • 22
-1
votes
1 answer

Quartz.net Thread Exception

I have a quartz.net scheduler.My scheduler consist of one job and three trigger. This trigger will work on minute mode and will fire every 1 minute,every 5 minute and every 10 minute.And while execute the job it will insert the data into a…
BruceWayne
  • 55
  • 5
-1
votes
1 answer

Quartz.net high availability?

I am looking to implement an instance of Quartz.net, probably as a windows service. We plan to use SQL server as the back end storage of job data. Long story short, high availability is paramount in our project. The quartz.net site talks about load…
SpaceCowboy74
  • 1,367
  • 1
  • 23
  • 46
-1
votes
1 answer

How to insert or update data to database using quartz.net

i have a program that using quartz.net to update or insert data in the database automatically every month. here is the code : private void Form1_Load(object sender, EventArgs e) { try { …
-1
votes
1 answer

'Existing Job' error when storing Quartz.NET job on Azure

How do I create adojobstore with out throwing the following error: Unable to store job because one already exists with this identification. Can I read from the database and check if the job does not exist then add it to the scheduler? Is that the…
user1418168
  • 91
  • 1
  • 1
  • 10
-1
votes
1 answer

Quartz.net, c# ASP.Net MVC3

someone know a tutorial to get started Quartz.net thank you in advance,
Omar AMEZOUG
  • 958
  • 2
  • 14
  • 38
-2
votes
0 answers

Quartz Jobs working Locallay,But publishing code to IIS or Server its not triggerinIIS

I have made quartz schedule services jobs which triggering jobs locally,But publishing on server or IIS its not triggering the jobs.I have IIS setting Appication pool setting to No Managed code and v.4.0 also and various setting to IIS,Nothing…
-2
votes
1 answer

I want to create an Email Schedular using Quartz.net

Can anyone help me a create an email schedular that sends emails every 15 min using quartz in asp.net core?
Sid_Sh
  • 9
-2
votes
1 answer

Quartz.Net don't works. Bad Code. I already tried to place the IJob call in this way: Quartz.IJob, but it does not work either

List item I am trying to implement Quartz.Net in my project, I have placed two .cs where I declare public classes, however, the code that I incorporate, gives me errors, which I detail below: using System; using System.Collections.Generic; using…
-2
votes
1 answer

How can I create a schedule that fires every nth week using simple schedule?

How can I create a schedule that fires every nth week, using quartz.net simple schedule?
Kalpa-W
  • 348
  • 3
  • 22
-3
votes
1 answer

How to solve the sleeping problem in Quartz.NET (C #)?

I am having a problem with Quartz.NET to create a job on a system. The Quartz is sleeping 23:50 and waking up 7:26 AM. I have a job scheduled for 00:00 System Information: 1 - .NET Application 2 - IIS Server Application log: enter image description…
-3
votes
1 answer

Adding a New Quartz.NET Job

I've inherited an application which uses Quartz.NET I have no idea how to maintain/use this and need to add a new Job. I created a new Job class and added it to the jobs xml file as an element under . Will this automatically add the…
onefootswill
  • 3,707
  • 6
  • 47
  • 101
-4
votes
3 answers

Send daily notification mail from asp.net mvc web app

I've developed a C# web app MVC that gets some information from another site (Trello) through API calls, and allows the user to do some actions like printing an .xls file with all card details. Now, I want to implement a functionality that sends…
Limi Derjaj
  • 45
  • 1
  • 10
1 2 3
98
99