Server-Sent Events (SSE) are a a part of the HTML5 specification. SSE allows a uni-directional persistent connection between a client and server, such that the client makes only a single request and the server keeps pushing data to the client continuously, until the connection is closed.

learn more… | top users | synonyms

1
vote
2answers
18 views

HTML SSE or PHP SSE .innerHTML display order

I'm trying to have the newest messages pulled into the page on top. Currently the newest messages are going underneath each time a new message comes in. <script> ...
0
votes
1answer
9 views

SignalR in SSE Mode: Meaning of EventSource readyState Property

What is the meaning of these entries in the SignalR client-side logs? EventSource readyState: 0 (then, after 20-30 minutes of 0's, they all switch to 2's and SignalR stops communicating until I ...
1
vote
0answers
10 views

servlet Server-sent event not working with Chrome/Safari

I am working on servlet but encountered a problem. The SSE works fine with Firefox but cannot work with Chrome/Safari. The similar code in PHP can run smoothly in all three browsers mentioned above. ...
0
votes
2answers
52 views

How do I trigger a real time client update in Rails

I'm creating an online multiplayer board game using Rails, and I want the game to be able to be played without having to manually refresh the page. I'm planning on using websockets or Server Sent ...
0
votes
0answers
37 views

Server Sent Events - Event-Stream - Trigger a PHP server side event?

I have a chat panel using HTML, CSS, jQuery. Set up an event listener with no problems. Set up a text/event-stream php file which can send messages to client with no problems. How do I communicate ...
0
votes
1answer
16 views

Event Source return data length

This article enter link description here provides an excellent introduction to Server Sent Events. The one thing that is not clear to me is this - they have a section entitled Multiline Data where ...
2
votes
1answer
43 views

HTML5 Server-Sent Events: How to set withCredentials option?

According to WHATWG - Server-Sent Events below is the API for using EventSource interface: [Constructor(DOMString url, optional EventSourceInit eventSourceInitDict)] interface EventSource : ...
1
vote
1answer
53 views

Server-Sent Evenets: Change time interval

I was looking at Server-Sent Events, since the client is on shared hosting and I can't use websockets. I have tested an W3School's example and it is working beautifuly.My code looks like this: ...
0
votes
0answers
43 views

how to send a string to a servers SSE

i just started to use SSE in c# , iam really new at this. and i managed to receive answer from the server , but i have no idea how to send message to the server i want to build a chat app , My ...
0
votes
1answer
67 views

Server-Sent Events with multiple users

I'm attempting to write a chat program with the new Server-Sent Events API, however, I've been having trouble figuring out how to send different users different events. With all the code occurring ...
0
votes
1answer
25 views

Sending Extra string from client to server in Server sent event

source = new EventSource("stream"); This is how I connect to server pushing streaming data, Now my scenario is to send an extra string while making the connection. how do I achieve this ? I am ...
0
votes
0answers
34 views

SSE in ExpressJs

I am trying to implement Server sent events in Expressjs project. Now, I created a socket connection using net api of NodeJs. I am getting streaming responses in socket. My doubt is when I try to send ...
3
votes
1answer
96 views

Best way for client to retrieve chat messages from server?

I'm building a chat application with JavaScript, jQuery, MySQL and PHP, and I'm just wondering what is the best way for the client to retrieve chat messages from the server? My current potential ...
0
votes
0answers
91 views

Server-Sent Events using Poco::Net::HTTPRequestHandler

I'm trying to "stream" data to an HTML5 page using server-sent events. This tutorial http://www.html5rocks.com/en/tutorials/eventsource/basics/ was quite helpful to get the client side working. But ...
4
votes
0answers
140 views

Is using HTML5 Server-sent-events (SSE) ReSTful?

I am not able to understand if HTML5s Server-sent-events really fit in a ReST architecture. I understand that NOT all aspects of HTML5/HTTP need to fit in a ReST architecture. But I would like to know ...
1
vote
1answer
183 views

HTML5 Server sent events and multiple clients (without using Comet)

I have a usecase for which I would like to know if HTML5's Server-sent-Events is suitable. Multiple clients (Javascript+HTML5 browsers) connect to the web server (with a Java EE backend). Each client ...
0
votes
0answers
121 views

Detecting when a client disconnects with Django and Server-Sent Events on Heroku

Heroku's documentation about sending a streaming response says: "If you’re sending a streaming response, such as with server-sent events, you’ll need to detect when the client has hung up, and ...
1
vote
1answer
93 views

html 5 sse unable to pass data to angular data

I have been trying to pass my sse data in the angular's data but it just won't display. Here is how I tried: (my view) <body ng-app> <div ng:controller="Main"> <ul> ...
0
votes
2answers
54 views

Symfony asynchronous stream possibilities

How to get a information on the client side, without requesting the database? The example would be a simple chat application. Two clients logged to a stream, like chat room. One filling a form, ...
1
vote
0answers
51 views

Is there a server-side library of HTML5 Server-Sent-Events on node.js?

We can simply write some code to fire an event: res.send("data: " + data + "\n\n"); But SSE has other features, like Last-Event-ID, keep-alive, and so on.
0
votes
1answer
53 views

Looking for a Java implementation of the client side of the Server Sent Events spec.

I have a desktop client and a server sides both implemented in Java. The server side sits on Tomcat. Now I wish to check using Server Sent Events and while Tomcat makes it possible to use it on the ...
2
votes
0answers
94 views

Flask server sent events socket exception

I am thinking of using SSE to push new data to the client and using Flot(javascript charting library) display "live" updates. My server runs on python Flask framework and I have figured out how to ...
2
votes
1answer
270 views

How to push content in real time in rails 3

I'm wondering the way to push content in my site in real time.. I've researched some time and I realized that there are many ways to do this work. Some considerations first: I have a Rails 3 App with ...
2
votes
1answer
95 views

Server-Sent Events with Nginx and uWSGI

Is it possible to use server-sent events from a python/Flask application that is behind uWSGI and Nginx? I've found packages that implement SSE in python/Flask, but they seem to all do so using ...
1
vote
2answers
60 views

java script server async events

I have a web server which I want to send data to the client when the server detects a change in the data base. I want the client to receive the data without polling. What is the best way to achieve ...
0
votes
1answer
103 views

Does server sent events is “Busy Wait”?

I'm building a web site using flask and I wish to do a Push to the client. I've followed real-time-events-python and I was able to create the website. One thing that I've noticed is that when ...
0
votes
0answers
33 views

HTML5 Server Sent Events using different events vs different urls

If I have two different types of events then it seems there are two ways to separate the different types of the events using HTML5 Server Sent Events: Attaching the respective event keyword to every ...
3
votes
1answer
101 views

My connection using Server-Sent Events (and Javascript/PHP) keeps dropping immediately

Yesterday I dived into Server-Sent events, as they were a great way to create a newsfeed for an online game I'm creating. I had a working script that could subscribe to my feed, and a script that ...
1
vote
1answer
129 views

too many sse connections hangs the webpage

What limits the number of SSE(server sent event) connections? I have been working on a project using django/gunicorn/django-sse. My project works great when i limit the number of sse connections to ...
0
votes
2answers
121 views

request header not set to text/event-stream for Eventsource calls

I have the following Eventsource. var source = new EventSource('/events'); source.onmessage = function(e) { document.body.innerHTML += e.data + '<br>'; }; The problem is, the ...
2
votes
1answer
197 views

Server Sent Event connection not staying open with Apache/Thin/Sinatra

I'm trying to setup basic server side event ability using Apache/Thin/Sinatra. Everything works as exepcted when I run the Thin server directly. When I run the Thin server through Apache using the ...
1
vote
0answers
80 views

How to know client connection status in bottle?

I'm testing a Server-sent event website with bottle framework. The problem is that after the client disconnected, the server still keeps sending messages, resulting in broken pipe exception. Is there ...
7
votes
2answers
444 views

Server-sent events and php - what triggers events on the server?

All, HTML5 Rocks has a nice beginner tutorial on Server-sent Events (SSE): http://www.html5rocks.com/en/tutorials/eventsource/basics/ But, I don't understand an important concept - what triggers ...
0
votes
3answers
524 views

Building a Chat application using Server sent Event and node.js

I am new to node.js and SSE. I want to create a chat application using SSE and node.js. can any one guide which is better SSE or websocket? Is there any polyfill for IE using js not php for IE7+ ...
-3
votes
1answer
108 views

How do I speed up Server Sent Events (SSE)? [closed]

Im trying to make a countdown and display at least every second. it must be serversided! but i cant figure out how to speed up this SSE example code from w3schools. thx
0
votes
0answers
70 views

Firefox losts connection with eventSource

I'm using Server Sent Events to run a social feed and update it in real time. Javascript Code : var source = new EventSource('php/stream.php?type=1&encoding=data'); source.onmessage = ...
0
votes
0answers
100 views

$.ajax and EventSource (Server Sent Events)

Is it possible for a java script application to use both EventSource as well as POST/PUT using $.ajax? I have an eventSource object like below: eventSource = new EventSource('/sse'); ...
0
votes
0answers
189 views

Spring ApplicationListener inside of a MVC Controller

Is it possible to implement an ApplicationListener inside of a Spring MVC Controller. I'm implementing SSE (Server Sent Events) and I would like to have the controller deliver events obtained via my ...
4
votes
2answers
242 views

Server-Sent Events costs at server side

If I understand the Server-Sent Events principle correctly, each time a client registers to an EventSource, it actually opens a new HTTP connection to the resource managing the event. Contrary to ...
1
vote
1answer
55 views

Avoid same data with Server-Sent Events

I'm using the Server-Sent Events to push new data to users through a Webapp. I'd like to avoid to display twice the same data. My idea was to use the e.lastEventId as Mozilla's documentation ...
4
votes
3answers
362 views

Broadcasting messages with Server-Sent events

I want to implement a simple Server-Sent events app where clients listen to a php file like this <script src="eventsource.js"></script> <script> var es = new ...
1
vote
0answers
93 views

SSE (Event Source) flush() PHP

At home, I'm trying to create a SSE Endpoint to use over website, true. Then,I have the code fragment that's keeps request open, obviously (while( true )) ... So then, I echo something and then use ...
2
votes
1answer
449 views

server sent event to multiple clients from Flask

I am playing around with a small project to get a better understanding of web technologies. One requirement is that if multiple clients have access to my site, and one make a change all the others ...
8
votes
1answer
796 views

How do I implement Server Sent Events in PHP?

I had set up a server sent event script with php and a while loop, I did not want for the script to have to keep closing and have to repoll so I put it all in a while loop. The issue was that the ...
1
vote
1answer
182 views

Correct method of implementing SSE/EventSource?

I have seen tutorials on the net where the author sets up SSE/EventSource and in the server PHP script echos out some data and then calls ob_flush() and flush() to send the data back to the client ...
5
votes
1answer
849 views

SSE Uncaught Error: SECURITY_ERR: DOM Exception 18 with a server that provides Server Sent Events (SSE)

I am trying to connect browsers with a server that provides Server Sent Events (SSE). This server has a different domain than the original one. For example if you call http://d1.example.com/page this ...
0
votes
2answers
325 views

pyserial reading serial port in flask (maybe using gevent)

I'm building a webserver that would need to read (and keep reading) the serial port of the machine it's running on. The purpose is to be able to read a barcode scanner, and using Server-Sent Events to ...
-4
votes
1answer
291 views

Server sent events client for android [closed]

In Html5, I read there are special events that can be triggered from the server, these events are sent as Response : Content-Type : "text/eventstream". In Javascript there's a class called EventSource ...
0
votes
1answer
68 views

javascript - reference DOM for a variable every time

The title of the question may seem misleading as I know you should not use variable if you want to reference the DOM every time. However, the scenario is a bit different; I've created an SSE script ...
0
votes
1answer
105 views

Server Sent Events Stop Start with new parameter

please help. I'm using Server Sent Events to dynamically update a website based on data stored in a database. I now wish to pass a new parameter ('abc.php/?lastID=xxx') back to the PHP script based ...

1 2 3