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.
0
votes
1answer
77 views
Pass a C# dynamic object to a method that takes an IDictionary
Right now, I'm doing this
var data = new JobDataMap(new Dictionary<string,string> { {"obj", "stringify"} });
But I want to do this:
dynamic d = new { obj = "stringify" };
var data = new ...
0
votes
1answer
61 views
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 : ...
0
votes
2answers
44 views
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 ...
0
votes
1answer
69 views
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 ...
5
votes
2answers
192 views
Executable fails with weird exception
I am using ILMerge and Quartz.NET in a C# .NET 4.0 Windows Service application. The app runs fine without using ILMerge, but now that we're nearing shipping release, I wanted to combine all DLLs into ...
0
votes
2answers
48 views
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?
0
votes
0answers
45 views
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 ...
1
vote
2answers
177 views
How to implement a Quartz.NET job in ASP.NET MVC with UnitOfWorkPattern on EF Code first
I have ASP.NET MVC 3.0 application, with EF Code First for data layer. I have implemented a Unit of work pattern, I’m binding context of the unit of work on HttpContext.Current.Items[SomeKey] ...
1
vote
1answer
62 views
Call an MVC ActionResult with Quartz
I'm trying to set up quartz to stream values to the client using SSEs (server sent events). What I'd like to do is call an ActionResult in the controller every 5 seconds, which will send the updated ...
0
votes
2answers
77 views
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 ...
0
votes
0answers
48 views
Quartz.net long jobs timeout
I am using quartz.net for scheduling jobs(file downloading and extracting in a single job). I am using PsExec for opening remote connection and pass necessary parameters for file downloading and ...
1
vote
1answer
188 views
Quartz.net windows service core concepts
I want to work with job scheduling and browsing on the internet I saw that Quartz.Net is a good option for it. Many blogs show that a windows service must be initialized and my question is: is it ...
-1
votes
2answers
879 views
How to create DateTimePicker in Razor MVC4? [closed]
I am creating a web-based task scheduling application using QUARTZ.NET and RAZOR(MVC4).
For more details Click Here as given bellow
Please give me some code or any reference to implement ...
-1
votes
2answers
54 views
Optional run-once-a-day functionality, how to? [closed]
I've got this winform application which does stuff. It all works just fine. Now I want to be able to let the user schedule a method to run every day the application is running at a user specified ...
1
vote
1answer
84 views
Trying to install Quartz.net, having issue running server
So I have been following the instructions here for installing Quartz.NET. However, when I try running "Quartz.Server.exe -i" from the command prmopt, I get this error:
Topshelf.HostFactory Error: 0 : ...
1
vote
2answers
44 views
How to check for existing Quartz.net schedulers?
Recently upgraded my embedded Quartz.net scheduler to 2.x at which point I had to give up on giving my Zero Thread Schedulers unique names and now I have a problem that (very rarely) an object trying ...
1
vote
1answer
64 views
Is Quartz.Net appropriate to run a long process started from an ASP.Net 3.5 page?
I have a long running task (many hours) that is started via a web page on an intranet interface. This is an ASP.Net 3.5 project. Of course, I could extend the script timeout and let the page run for ...
3
votes
1answer
75 views
Quartz.Net JobStore using RavenDb
I'm working on a large scale project, and I'm allowing users to schedule operations.
I've been using the Quartz.net library, which worked fine, using the (default) RAMStore. However, as I make ...
1
vote
1answer
39 views
JobData is not persisted after each execution in Quartz.net
I have a job where I want to keep track of the 50 latest runs. For some reason it doesn't seem like the state is stored in my simple prototyp:
[PersistJobDataAfterExecution]
public class ApiJob : ...
2
votes
1answer
198 views
How to implement a task scheduler service using Quartz.net for multiple servers?
I want to implement Task Scheduler using Quartz.Net on WCF service which have following requirement,
should be WCF service.
hosted on multiple server on multiple location.
execute only once though ...
0
votes
1answer
62 views
Delete trigger for job in Quartz.net
How do I delete a trigger for a job in Quartz.net and keep the job? This is only an issue when deleting the last trigger on the job, right now it deletes the job as well.
The code I am using is:
...
0
votes
1answer
167 views
Quartz.NET - Shouldn't this unit test pass?
This question is related to this one, but is kept more general and can be treated independently.
EDIT: Quartz version is v2.0.1
From my understanding, the following unit test should pass:
[Test]
...
1
vote
1answer
243 views
Quartz.NET - Using/understanding cron based trigger and time zone/summertime (daylight saving time)
For sake of an example lets use the following cron expression: "0 0 14 1 * ?"
-> Fire on the 1st day of every month at 14:00 hours.
I used the Quartz CronScheduleBuilder to build the expession, but ...
0
votes
1answer
63 views
Quartz.net Jobs on Load balancer
I have a quartz.net scheduler implementation (and jobs). The scheduler is inside my website/application itself and runs jobs async at specified time intervals.
It is all very well on local and ...
0
votes
1answer
45 views
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 ...
3
votes
1answer
199 views
Cron expression every 50 seconds in Quartz
I'm running my Jobs using Quartz with a cron expression every 50 seconds:
Cron_Expression = "0/50 * * * * ?"
What happens is that my job runs at the seconds: 50, 60, 50, 60,... and not every 50 ...
2
votes
3answers
191 views
Quartz.net on Azure The time zone ID 'Coordinated Universal Time' was not found
I'm using Quartz.Net on Azure worker role (hosted in west europe zone) and for some reason my schedulder is not working throwing this error:
An error occurred while scanning for the next trigger ...
0
votes
1answer
93 views
Control Quartz.net server remotely
I'm going to setup a Quartz.net server as a Windows Service and setup and schedule jobs using ADO Job Store. However, once in production I will have no access to the Win Svc. I want to create a web ...
0
votes
1answer
118 views
Execute multiple Stored Procedures with Quartz.NET
Still trying to wrap my head around Quartz.NET after reading all the tutorials, which seem very code specific, versus implementation focused. Here's what I'm trying to do. I have 20 SQL stored procs ...
0
votes
1answer
213 views
How to configure Quartz.Net version 2.1.2.0 integrated with Log4Net
I have downloaded the newest version of Quartz.Net and try to configure it with common.logging and log4net dlls by using below configuration (based on this example)
<configSections>
...
1
vote
1answer
101 views
Security around remote access for Quartz.net Scheduler
We are currently looking for a scheduling application to integrate within our solution. We are very close to locking in Quartz.net, but there is one deal breaker that I cannot find any resolution for ...
5
votes
1answer
208 views
Quartz.net + Task Parallel Library
I'm working on upgrading a job scheduling system we use in-house that uses Quartz.net. Looking at the source of the latest version of Quartz, I noticed that it still uses its own thread pool ...
0
votes
0answers
54 views
Quartz.NET getting exception while connecting remote server
In Web config i have configured like below.
<add property="Type" value="CrystalQuartz.Core.SchedulerProviders.RemoteSchedulerProvider, CrystalQuartz.Core" />
<add property="SchedulerHost" ...
0
votes
2answers
443 views
Quartz.NET - no configuration section <common/logging> found - suppressing logging output
I am trying to use Quartz 2.1.2 with logging, but I keep getting the following output when I debug:
no configuration section found - suppressing logging
output
Here is my App.config file:
...
1
vote
2answers
61 views
ASP.Net Library name conflict between Ektron app_code and library
I've got an Ektron 8.2 site, and I was trying to integrate Quartz.NET into it, in order to run some scheduling. Quartz.NET requires a library Common.Logging. This library introduces a conflict and ...
0
votes
1answer
96 views
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 ...
0
votes
1answer
758 views
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()
{
...
0
votes
1answer
286 views
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
<configSections>
<section name="quartz"
...
1
vote
1answer
80 views
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";
...
0
votes
1answer
162 views
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?
0
votes
0answers
82 views
Quartz Scheduler fails if I change system timezone
We have a scheduler that got triggered at 12 AM everyday. It work perfectly until I do not change timezone such that it skips next subsequent calls.
Example, Current time and Date is 4 PM of 10th ...
0
votes
1answer
150 views
How can I call TriggerJob with custom jobDataMap?
I've got a Quartz.NET job which I set up as follows:
var jobKey = new JobKey("JobName", "JobGroup");
var triggerKey = new TriggerKey("JobName", "JobGroup");
var jobData = new JobDataMap();
...
0
votes
1answer
73 views
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:
<job>
<name>CRMMoreThanOneJob</name>
<group>jobGroup1</group>
...
0
votes
1answer
100 views
running IStateful jobs per machine in a cluster with Quartz.net
I am running a cluster of quartz.net services all reading of a standard AdoJobStore. The behaviour I'm looking for is explained in the title, I'm wanting to run Stateful jobs per machine in the ...
0
votes
1answer
70 views
Quartz.Net GetNextValidTimeAfter() throws exception for DST
Currently I am using Quartz.Net Scheduler to schedule different jobs. In the UI User can configure the Frequency i.e. Weekly and Day of Week and Time, to trigger the Job. Once the User can configure ...
0
votes
1answer
100 views
Data prefetching using scheduled tasks in an ASP.NET environment
We're developing an ASP.Net application that retrieve data from WCF services.
The user interface (develped with JQM and ASP.NET) shows a loading panel while the request is processed and data are ...
3
votes
1answer
519 views
Constructor injection with Quartz.NET and Simple Injector
Currently I am writing a service using Quartz.NET to schedule the running of it.
I was wondering if anyone has any experience of using constructor injection with Quartz.NET and Simple Injector.
...
0
votes
1answer
260 views
Running Jobs in Quartz.Net
I understand that you compile the Quartz solution into an exe that can run as a Windows Service. And that somehow this Quartz server runs jobs. What I don't get is, where do I put all my Job code ...
0
votes
1answer
151 views
Schedule Task at Interval based on Start time in Quartz
I am new to Quartz and want to use it to schedule scripts in SQLServer using a service for clients using SQL Server Express.
I need a user to be able to schedule a task to run, say every second week ...
0
votes
1answer
82 views
How to handle Quartz.net AdoJobStore exception
i've read the docs, i'm throwing the quartz.net exception. I'm losing one job which is not executed correctly.
Here is code i'm using, you can use that for reproduction
http://pastebin.com/DdvVGukn
...




