I've heard Jeff and Joel discuss on a podcast what they called a "Heartbeat" which essentially is creating something that acts similar to running a windows service in an website. I was hoping to get some more insight into how something like this would be implemented. Has anyone implemented something like this before and what did you use it for?

Thanks!

link|improve this question

feedback

5 Answers

up vote 2 down vote accepted

I found the answer in a combination of places. I took what Jeff Attwood did for stackoverlow here as well as the Code Project article and made something that is completely reusable and able to easily be hooked up using an IoC tool. I've posted the full details here

link|improve this answer
2  
Seems like your post and/or site is gone... maybe just need to fix the URL? – Sean Hanley Jun 2 '10 at 15:39
feedback

We are implementing something like that between the client and server, as we have windows forms client and WCF service acts as a server.

The aim of the heartbeat is to sayd "I am still alive" from the server side.

Check this link for introduction for Heartbeat in WCF

link|improve this answer
feedback

Basically you use a web page to kick off a process... but you put a cap on how often the process can run.

Something like this:

TimeSpan timeSinceLastRun = DateTime.Now.Subtract(lastRunTime);

if(timeSinceLastRun > interval) {
    RunCustomProcess();
    lastRunTime = DateTime.Now;
}

this way you just have to ensure that occasionally someone (or some program) visits the page. Hitting the page many times won't adversely affect your process..

link|improve this answer
were is the ideal place to store those vars like lastruntime... is global.asa the only place? – Scott K Jun 24 '09 at 14:30
could be in a database, or could simply come from HttpApplication state. – Ben Scheirman Jun 26 '09 at 3:35
feedback

This Code project article: Simulate a Windows Service using ASP.NET to run scheduled jobs, explains it all.

link|improve this answer
feedback

You can use ASP.NET Health Monitoring and wire up something to WebHeartbeatEvent.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.