Jimmyt1988
Jimmyt1988

Reputation: 21126

How to call a url every 5 minutes

I'm used to Cronjobs in PHP... Set up a cronjob that goes to a url every x minutes.

However, in ASP .Net C# and I guess also down to Microsoft Azure, I cannot find a simple way of calling a URL on a scheduled timer?

What's the way you go about this?

I would like something like this:

every 5 minutes, please invoke this url: www.example.com

Upvotes: 2

Views: 1574

Answers (1)

Rick Rainey
Rick Rainey

Reputation: 11246

See the Azure Scheduler Service.

http://azure.microsoft.com/en-us/services/scheduler/

In particular, I believe this tutorial is exactly what you want.

http://azure.microsoft.com/en-us/documentation/articles/scheduler-get-started-portal/

Upvotes: 4

Related Questions