I have a object map on my server (objects representing Customers, Orders, Items, related to each other, based on content from a database) and want to keep an up to date version of that object map in the browser where the user is manipulating and viewing the data.
Since more users can access and modify the same object map at the same time, I need a way to keep the clients in sync with the server.
My server environment is based on .net/asp.net 3.5 sp1, and the client needs to run in a browser (html/javascript). I am considering using asp.net ajax 4.0 due to its databinding capabilities and observable collections on the client side, and using something like .net ria service or ado.net data services on the server.
If anybody have any experience or know of blog posts/tutorials/research papers/articles/you name it, on the topic, I would really appreciate a link or comment.
Best regards, Egil.