I have an Async HTTP Handler which serves as a Comet request/response, hosted in ASP.NET on IIS7.

The handler receives a request, then waits for an event to be called before sending the response back to the client.

Is it possible to call the event from outside of this ASP.NET application, in a separate web service hosted on the same web server?

I can think of a few ways (such as locally calling another HTTP handler on the same application), but this seems quite dirty. Is there a better way to do this?

link|improve this question

sounds like you will have to create some CallBacks take a look here to see if this can be of help msdn.microsoft.com/en-us/magazine/cc163725.aspx – DJ KRAZE Jan 4 at 18:20
feedback

2 Answers

Take a look at SignalR, you could setup a Hub for your application to communicate with various endpoints.

link|improve this answer
feedback
up vote 0 down vote accepted

I ended up calling the handler using a local HTTP request. The request was actually quite cheap in the end. Plus, we've decided we may need to move this functionality to another server in the future, which should be quite easy with a simple HTTP request.

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.