2,116 questions
0
votes
1
answer
535
views
Server Sent Event's Crashing my Browser
I have a web application that uses SSE to update available tables. It reads off a DB on its status whether its 1 or 2 and updates the seating arrangement accordingly.
However, i've been experiencing ...
12
votes
2
answers
10k
views
jQuery and AJAX or server sent events
It seems in both cases client sends a request to server and server answers, unless in server sent event you can set retry time in your server side code. So is there any benefit in using SSE rather ...
80
votes
2
answers
44k
views
How do server-sent events actually work?
So I understand the concept of server-sent events (EventSource):
A client connects to an endpoint via EventSource
Client just listens to messages sent from the endpoint
The thing I'm confused about is ...
3
votes
3
answers
1k
views
How to implement Server Sent Events in MVC3 using .NET?
I want to make a feed application using SSE in MVC .NET. I was looking over the web but I can't find an example or a way to implement the SSE in MVC. I developed a very dirty solution where a View ...
0
votes
3
answers
748
views
Flex Ajax Bridge, or any other push method with ColdFusion?
Is it easy to implement Flex Ajax Bridge with ColdFusion? Where can I learn how to use it? My frontend is pure HTML+JS and I just need the push capability. I thought of using Websocket Event ...
17
votes
3
answers
15k
views
How exactly does Server-Sent Events work?
I am trying to get into the web push technology so I started looking around. I have basically found 2 technologies, that is Websockets and SSE. After ruling out Websockets because of lack of perl ...
7
votes
4
answers
8k
views
Server-Sent Events on Node.JS
I'm actually trying to create a web-application which will utilizes the Server-Sent Events draft. From my knowledge, SSEs utilize one thread per connection, and since the server is going to ...
18
votes
1
answer
9k
views
HTML5 Server-Sent Events with Ruby Sinatra
I'm new to Ruby and Sinatra, I'm trying to setup a simple HTML5 Server-Sent Event with it, The code below works fine in Chrome developer builds but fails in Non Developer Builds and Safari on both ...