Utilizo JQuery para realizar una simple llamada AJAX a un controlador HTTP ficticio que no hace más que mantener viva mi sesión:
function setHeartbeat() {
setTimeout("heartbeat()", 5*60*1000); // every 5 min
}
function heartbeat() {
$.get(
"/SessionHeartbeat.ashx",
null,
function(data) {
//$("#heartbeat").show().fadeOut(1000); // just a little "red flash" in the corner :)
setHeartbeat();
},
"json"
);
}
El controlador de sesión puede ser tan simple como:
public class SessionHeartbeatHttpHandler : IHttpHandler, IRequiresSessionState
{
public bool IsReusable { get { return false; } }
public void ProcessRequest(HttpContext context)
{
context.Session["Heartbeat"] = DateTime.Now;
}
}
La clave es agregar IRequiresSessionState; de lo contrario, la sesión no estará disponible (= nulo). Por supuesto, el controlador también puede devolver un objeto serializado JSON si algunos datos deben devolverse al JavaScript de llamada.
Disponible a través de web.config:
<httpHandlers>
<add verb="GET,HEAD" path="SessionHeartbeat.ashx" validate="false" type="SessionHeartbeatHttpHandler"/>
</httpHandlers>
añadido de balexandre el 14 de agosto de 2012
Me gustó tanto este ejemplo, que quiero mejorar con HTML / CSS y la parte de ritmo
cambia esto
//$("#heartbeat").show().fadeOut(1000); // just a little "red flash" in the corner :)
dentro
beatHeart(2); // just a little "red flash" in the corner :)
y añadir
// beat the heart
// 'times' (int): nr of times to beat
function beatHeart(times) {
var interval = setInterval(function () {
$(".heartbeat").fadeIn(500, function () {
$(".heartbeat").fadeOut(500);
});
}, 1000); // beat every second
// after n times, let's clear the interval (adding 100ms of safe gap)
setTimeout(function () { clearInterval(interval); }, (1000 * times) + 100);
}
HTML y CSS
<div class="heartbeat">♥</div>
/* HEARBEAT */
.heartbeat {
position: absolute;
display: none;
margin: 5px;
color: red;
right: 0;
top: 0;
}
aquí hay un ejemplo en vivo solo para la parte de la paliza: http://jsbin.com/ibagob/1/