Search code examples
c#.netasp.netwcfduplex

ASP.NET continuous data streaming suggestion


I have a problem.

I have a client server setup. My client wants to share data (binary) with all other clients. I don't want to have an extra database layer primarily because I don't have the need for storing the data and secondary, I want to skip the latency due to database communication.

Currently, I have a desktop implementation wherein I play with TCP sockets. I want to implement a web based solution for it.

The application is similar to a text chat application, just that in this case the data to be transferred is bigger and the frequency is more and the clients are many.

I was looking at WCF Duplex implementation, but since I have never done it before, I wanted to be sure if that is the way to go.

Can anyone please help me with few implementations of this scenario?

Thanks.


Solution

  • WCF Duplex Implementation would work for you as I had used the same for the sort of problem you are trying to solve.