Reputation: 121
My goal is create an application for my institute such that whenever there is any new notice every faculty should be notified on their android phone.
How to implement such working that whenever there is some new notice, my institute's server should push that notice to every client connected at that time, and they should be able to read that notice.
UPDATE : - What are my needs? Is MQTT the answer or any other solution to implement such working.
Upvotes: 0
Views: 111
Reputation: 59791
Sending MQTT messages from a web page is relatively simple and can be achieved in a two main ways:
There are plenty of examples of both of these methods available online, all should work without the need to access the internet.
Upvotes: 1