I have a solution, "Site" and "MailProcessor". Now "MailProcessor" is standalone win32 console app, but I need to schedule it from "Site", with restarting every 10 minutes. How I can do this? Please help me guys.
Asked
Active
Viewed 152 times
2 Answers
0
This can be done in many ways, and depends on your application logic and server config.
- Windows Task Scheduler
- Quartz scheduler
- Hangfire scheduler
- Build your own scheduler in asp.net website.
- and many others

Community
- 1
- 1

Amr Elgarhy
- 66,568
- 69
- 184
- 301
0
Here is what you need.
http://www.hanselman.com/blog/HowToRunBackgroundTasksInASPNET.aspx
Most of the time, I use FluentScheduler, du to its simplicity.

Bafla13
- 132
- 2
- 11