I struck with a problem. I am working on a game development using C#, ASP.net web application using MVC4 and Entity Framework.
To brief my problem:
I have a web application with a single page with a slider range from 0-100.
Consider 3 users logs in the application and each are in their own session accessing the page with the slider.
Say if, user 1 moves the slider from position 0 to 10, the slider corresponding to the user 2 and user 3 has to be synchronized and should get reflected to their UI. vice versa for all. Looks like a multiplayer gaming where the vent of one gets shown for other users.
How to make this happen? I am trying hard cracking my mind to implement it but couldn’t.
Pls help me out fellow.
Please do let me know more further information.
I appreciate your help.
Looking forward!
Doing this on a web app only, without using any kind of technology such as Flash, Silverlight, Java Applet, etc will necessarily involve something similar to web sockets. SignalR also seems like a good alternative. I linked an example from Scott Hanselman’s blog.