I'm trying to build a notification messaging system. Im using the SimpleWsServer.php server example. I want to push a notification to the user's browser when a task has completed on the server. This needs to be done using PHP and i cant find a tutorial where this is shown. All the tutorials seems to be showing tavendo/AutobahnJS scripts to send and receive while the PHP server runs as a manager.
Is it possible to send a message using a php script to the subscribers?
Astro,
This is actually pretty straight forward and can be accomplished a couple of different ways. We designed the Thruway Client to mimic the AutobahnJS client, so most of the simple examples will translate directly.
I'm assuming that you want to publish from a website (not a long running php script).
In your PHP website, you'll want to do something like this:
And the javascript client (using AutobahnJS) will look like this:
I've also created a plunker for the javascript side and a runnable for the PHP side.