I have read in w3schools about usage of server sent events in html5. it says:
- Set the "Content-Type" header to "text/event-stream" - Specify that the page should not cache - Output the data to send (*Always* start with "data: ")
that is in echo line in php code as echo "data: The server time is: {$time}\n\n";
- Flush the output data back to the web page
http://www.w3schools.com/html/html5_serversentevents.asp examples here are in php for server side. i am using hunchentoot on common lisp.
On Fri, Feb 28, 2014 at 10:27 PM, Faruk S. Can farukscan@gmail.com wrote:
I have another question about hunchentoot. Is it possible to use server sent events with hunchentoot, like other html5 improvements mentioned in w3schools-html5 such as app cache, local storage, session storage? as that one related to and depend on the server side support.