I have a stream of Twitter data that's being parsed and aggregated by Microsoft StreamInsight. The output is a single number (a percentage). Ideally, at the time of the request (to the web server), I'd like to retrieve the latest percentage from StreamInsight and use it in the response.
I know I could have a StreamInsight output adapter write to file, and then read the file, but that's just wrong for so many reasons. I'm hoping that an ASP.NET application can actually connect to StreamInsight in some way to poll for the percentage.
Any ideas?