1

I receive a data from client on every 5 minutes i have to run my webservice on every 5 minutes so that i get that data and keep my database hot. Is it possible to run webservice on timer. If yes, Please explain how? Thanks in advance.

Prasanna
  • 55
  • 1
  • 9

1 Answers1

1

Try to read about Cache storing technique. It's really simple and works very well. http://www.codeproject.com/Articles/12117/Simulate-a-Windows-Service-using-ASP-NET-to-run-sc

If you mean to use Timer class, it doesn't work so well.

Also check this question,I think it's similar to yours: Timer on Website to activate Web Service calls every hour

Community
  • 1
  • 1
xbilek18
  • 93
  • 1
  • 11