2

I have a web service which I would like to call on a scheduled basis. Currently, I have a scheduled task setup to execute the call. Here's a link Jon Galloway's post on the topic.

I'm planning to switch this out with a Win Service, simply to appease my boss, but I'm wondering what the advantages are (aside from keeping my job ;).

I personally like the script method due to its simplicity, but am curious to know what I'm missing over a Win Service approach..

John Saunders
  • 160,644
  • 26
  • 247
  • 397
madcolor
  • 8,105
  • 11
  • 51
  • 74

1 Answers1

1

Reliability is higher with a Windows Service. It can be set to start when the system starts, and to restart automatically if it fails.

John Saunders
  • 160,644
  • 26
  • 247
  • 397