On the server-side I've got a hook function that looks like this:
public ActionResult Hook(string token)
{
try
{
ManualResetEvent Event = new ManualResetEvent(false);
int EID = (new Random()).Next(100, 10000000); Collective.SessionPool[token].EventPool.Add(EID, Event);
Event.WaitOne();
Collective.SessionPool[token].EventPool.Remove(EID);
return new ServerSentEventResult()
{
Content = () =>
{
return Serializer.Serialize(new EventResult() { Data = Collective.SessionPool[token].Data, Event = Collective.SessionPool[token].Event });
},
Version = (new Random()).Next(100, 10000000)
};
}
catch (Exception e)
{
return Content("Error: An error has occured on the hooked thread. Re-hook to try again.");
}
}
ServerSentEvent Class looks like this:
public class ServerSentEventResult : ActionResult
{
public delegate string GetContent();
public GetContent Content { get; set; }
public int Version { get; set; }
public override void ExecuteResult(ControllerContext context)
{
if (context == null)
{
throw new ArgumentNullException("context");
}
if (this.Content != null)
{
HttpResponseBase response = context.HttpContext.Response;
response.ContentType = "text/event-stream"; response.BufferOutput = false; response.Charset = null;
string[] newStrings = context.HttpContext.Request.Headers.GetValues("Last-Event-ID");
if (newStrings == null || newStrings[0] != this.Version.ToString())
{
try
{
response.Write("retry:" + (new Random()).Next(200, 350) + "\n");
response.Write(string.Format("id:{0}\n", this.Version));
response.Write(string.Format("data:{0}\n\n", this.Content()));
response.End();
}
catch (HttpException e) { }
}
else
{
response.Write(String.Empty);
}
}
}
}
The problem is that when there are two clients connected one of the two can't reconnect after receiving the first event. This is because somehow an error occurs in the Hook function but when you try to look at the output manually it works and looks all perfectly fine.
I'm thinking it has something to do with the way I handle the waiting process, this happens by halting the execution through a ManualResetEvent. It was the best I could find to let this happen.
Could someone please help me out?
Event.Set()get called anywhere? If not, yourHookmethod will never get pastEvent.WaitOne();. What is the reason for waiting on the event? – nick_w Oct 31 '12 at 22:34Eventwithtokenand then withEID. How does the thread that callsEvent.Setknow what the value forEIDis? – nick_w Oct 31 '12 at 23:05Hookmethod? – nick_w Oct 31 '12 at 23:35