Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4604942
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T00:21:53+00:00 2026-05-22T00:21:53+00:00

I am aware of quartz.net and the codeplex task scheduler managed wrapper project. They

  • 0

I am aware of quartz.net and the codeplex task scheduler managed wrapper project. They have a rather decent learning curve and R&D phase to get it to work as per our specs. Also packaging them & configuring with our runtime installer is another issue. So we have decided to go with a commercial .NET task scheduler.

Our requirements are:

  1. Must be supported on Win xp and Win 7 (x86 + x64)
  2. Must provide a callback or event when trigger is fired.

Sample psuedo code:

Trigger mytrigger = new Trigger(Daily, "8:00am", myCallbackDelegate);
mytrigger.Start();

Every day at 8:00 method pointed to by myCallbackDelegate will be called.

The scheduler can run as service or everytime the app that references it is started.
.NET component that can be dropped on the form and configured preferred.

Please provide your recommendations. I have googled and cannot find anything that will do this basic functionality. thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T00:21:54+00:00Added an answer on May 22, 2026 at 12:21 am

    I have used Quartz.Net in a WCF Service and it has worked really good, it has lots of flexibility due to the Cron Triggers, basically you can work out most of the scenarios of scheduling, when you schedule a trigger, you need to specify a type of a class that implements the IJob Interface. In my case the Execute methods calls a singleton class/method to do the job it needs to perform. You can configure the Triggers to be stored on RAM (volatile) or a Database, i think you can specify a custom storage but i haven’t go that way.

    The only problem that i had with Quartz.NET is described in this question, I also posted the solution that i worked out, if you have more specific questions please let me know.

    This is some of the configuration basics of Quartz.NET mosthly followed from the Tutorial

    For instantiating the Scheduler you do something like this:

    ISchedulerFactory schedulerFactory = new StdSchedulerFactory();
    _scheduler = schedulerFactory.GetScheduler();
    _scheduler.Start()
    

    For scheduling a job you will do something like this

    JobDetail jobDetail = new JobDetail("UNIQUE NAME", null, typeof(NotepadJob));
    SimpleTrigger triggerToReturn = new SimpleTrigger();
    triggerToReturn.StartTimeUtc = DateTime.Now.ToUniversalTime();
    _scheduler.ScheduleJob(jobDetail,trigger);
    

    and the Job will be something like this

    internal class NotepadJob : IJob
    {
        //Open Notepad
    }
    

    If wokring with SQL you can configure the settings as followed on the Config file:

      <configSections>
          <section name="quartz" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.5000.0,Culture=neutral, PublicKeyToken=b77a5c561934e089" />
      <\configSections>
    
    
    <quartz>
      <add key="quartz.scheduler.instanceName" value="DefaultQuartzJobScheduler" />
      <add key="quartz.scheduler.instanceId" value="AUTO" />
      <add key="quartz.jobstore.clustered" value="true" />
      <add key="quartz.jobstore.clusterCheckinInterval" value="15000" />
      <add key="quartz.threadPool.type" value="Quartz.Simpl.SimpleThreadPool, Quartz" />
      <add key="quartz.jobStore.useProperties" value="false" />
      <add key="quartz.jobStore.type" value="Quartz.Impl.AdoJobStore.JobStoreTX, Quartz" />
      <add key="quartz.jobStore.driverDelegateType" value="Quartz.Impl.AdoJobStore.SqlServerDelegate, Quartz" />
      <add key="quartz.jobStore.tablePrefix" value="QRTZ_" />
      <add key="quartz.jobStore.lockHandler.type" value="Quartz.Impl.AdoJobStore.UpdateLockRowSemaphore, Quartz" />
      <add key="quartz.jobStore.misfireThreshold" value="60000" />
      <add key="quartz.jobStore.dataSource" value="default" />
      <add key="quartz.dataSource.default.connectionString" value="[CONNECTION STRING]" />
      <add key="quartz.dataSource.default.provider" value="SqlServer-20" />
      <add key="quartz.threadPool.threadCount" value="10" />
    </quartz>
    

    -Regards

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does anyone have any recommendations for a .NET c# wrapper for the (COM based)
I'm looking to use the quartz scheduler in my application because I have a
I am aware that in .NET there are three timer types (see Comparing the
I am currently aware that ASP.NET 2.0 is out and about and that there
I am aware of CocoaMySQL but I have not seen a Mac GUI for
I'm aware of this question here but I have a slightly different question. If
Our use of Quartz so far has been to configure the database backed scheduler
I am currently using Quartz Scheduler for asynchronous tasks such as sending an email
Anyone aware of how to get the ASP.NET Dev Server to challenge for basic
I'm aware of the Argotic framework for .Net that assists in the collation and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.