views:

24

answers:

0

Hi there, i'm writing a web app in C# in which i need to implement a scheduling function which has to be fired every day at the same time, i already used quartz to do something similar in an JEE application and it works perfectly; reading some post and docs about using quartz.net gave me some doubts how to implement it.

  • How can i integrate quartz.net in my web apps, i need to initialize the scheduler when my app start running (there´re not user interaction) some post that i read said the using Application_Start event in Global.asax doesn't works if the application does have any user interaction.
  • It is possible to run quartz integrated to a windows service and then call some C# pieces of code ? if so, how can i do this ?
  • There a better way to implement this solutions ?

Any helps you can provide me i'll appreciate it.