Whenever you request a web page, you send a message to the server and the server responds. As far as I know, most of the interactions happen this way: the client says one thing on the server, and the server says one thing. The server cannot "speak until it is pronounced."
Are there technologies that allow the server to initiate a conversation? For example, if you have a page that you would like to constantly update, then, as I did now, periodically makes an AJAX request to get updated information from the server. However, it would be better if the server could simply inform the client at the moment when new information appeared. Is there anything that can do this?
source
share