GBrookman
GBrookman

Reputation: 433

C# scheduler tools

I’m loath to ask another scheduler question here, I’ve read through dozens, but it’s still not clear to me what tools would best fit my need. I have three requirements for a reporting app:

  1. User invoked
  2. fixed scheduled
  3. user scheduled.

I have an ASP.NET forms app to cover #1 and a C# console app to handle #2 but now #3 has been added to the mix. So for the user scheduled reports I need to:

I suppose the latter two could be a single app but I’ve read it’s hard to debug service apps so keeping them separate may be good. I don’t know what parts of my requirements are met by Quartz.net and I’ve seen separate GUI tools (DayPilot) and backend (Task Manager API, CodePlex taskscheduler) mentioned. Not having used any of these I’m hoping to minimize my false starts.

Upvotes: 0

Views: 795

Answers (2)

Parth Mistry
Parth Mistry

Reputation: 29

If you require job scheduler try using hangfire.io

Upvotes: 1

jrummell
jrummell

Reputation: 43097

If you have SQL Server, then you should use SQL Server Reporting Services, which does all three.

Upvotes: 0

Related Questions