.net - Alternatives to a windows service for polling application -
I have a C # program that needs to query the database table and call for a webservice at the polling interval is.
I know that I could wrap it as a service of windows, though I am thinking that there are no other tools and techniques where I can call my exe on a program without creating a service I am
-
You can start the scheduled task (
taskschd.msc ) You can schedule your program to run using, which is basically the Windows version of
cron .
You can also run your program at startup and sit in the tray, while sleeping, wait for your timer to expire.
Comments
Post a Comment