Implementing A Server Side Push For A Small Number Of Clients
For an web application I am working on I have the following requirements: Clients need to be able to log in via a web brower. After logging in, they will be able to change confi
Solution 1:
5-10 clients? I would just have them poll the server. No need to over engineer this.
Solution 2:
You could consider using an Adobe Flash object to open a socket connection to the server.
This would allow the client and server to actually be "connected", therefore letting you know on the server that you are indeed connected, or when the connection is lost.
You could also tie in a simple heartbeat system into this, allowing "readiness" verification every second or few.
As a side note... Are you sure a web app is the right platform for this, as opposed to a native GUI application?
Post a Comment for "Implementing A Server Side Push For A Small Number Of Clients"