I wish to create a shared calendar web app where all users can see the same calendar. Each time one user creates and event , I want all other users to see that events without the need to refresh the web app. Is there a way to "push" notification or I must use a timer to update the site every second?
Asked
Active
Viewed 240 times
1 Answers
0
I only can recommend websockets.
If you use Apache with PHP at the backend, the bad news is that Apache does not support websockets. The good new is that there exist great solutions which allow you to write such a service in plain PHP in a few lines. I use Ratchet with success and a minimal effort.
For asp.net, I don't know what solutions exist, but I think you will find what you need by googling. There is also a related question on SO.

Community
- 1
- 1

Lorenz Meyer
- 19,166
- 22
- 75
- 121