brainydexter
brainydexter

Reputation: 20356

how to send multiple streams to streaminsight server

In an intranet setup, I have multiple clients and each one of them is required to send data to StreamInsight server. The data is event-driven, for e.g., when a user clicks on a page, that data (which user clicked on what object) needs to be sent to the streaminsight server.

Also, each client can send a lot of data, so the design needs to be scalable.

I am new to StreamInsight and would appreciate if someone can guide me on how should I send that data from the clients to the StreamInsight server ?

Thanks

PS: Will keep updating this as I find/figure out more things.

Upvotes: 0

Views: 713

Answers (1)

romans
romans

Reputation: 81

Mark Simms recently answered a related question on the StreamInsight forum. In general, if the event sources are not in the same process as the StreamInsight server, you will need input adapters that can receive serialized event data. That can for instance happen through WCF (see the according sample on CodePlex) or a TCP/UDP approach.

Regards, Roman

Upvotes: 1

Related Questions