Tagged Questions

WebSocket is an API and a protocol for bi-directional, full-duplex communication that is closely associated with HTML5 and implemented in recent versions of most web browsers.

learn more… | top users | synonyms (1)

108
votes
24answers
77k views

What browsers support HTML5 WebSocket API?

I am going to develop an instant messaging application that runs in the browser. What browsers support the WebSocket API?
100
votes
9answers
16k views
54
votes
3answers
2k views

Socket.IO issue with control chars

I am implementing an application that uses websockets and a console accessed via Telnet. There is a communication between the connection established via websockets and the console. I am experiencing a ...
35
votes
7answers
7k views

node.js multi room chat example

I'm looking for a websocket/node.js chat implementation which supports multiple rooms. I'm also going to write an app which needs multiple rooms or servers, and I'm just looking for some code samples ...
31
votes
3answers
6k views

Faye vs. Socket.IO (and Juggernaut)

Socket.IO seems to be the most popular and active WebSocket emulation library. Juggernaut uses it to create a complete pub/sub system. Faye is also popular and active, and has its own javascript ...
29
votes
5answers
8k views

Can nginx be used as a reverse proxy for a backend websocket server?

We're working on a Ruby on Rails app that needs to take advantage of html5 websockets. At the moment, we have two separate "servers" so to speak: our main app running on nginx+passenger, and a ...
28
votes
3answers
16k views

C# web socket server

I'm trying to implement a C# web socket server, but its giving me a few troubles. I'm running a webserver(ASP.NET) to host the page with the javascript and the web socket server is implemented as a C# ...
27
votes
3answers
13k views

Good beginners tutorial to socket.io?

I am very new to the world of webdevelopment and jumped into the bandwagon because I find the concept of HTML5 very interesting. I am fairly confident on working with canvas and would now like to move ...
25
votes
6answers
3k views

HTML 5 Websockets will replace Comet?

It looks like Websockets in HTML 5 will become a new standard for server push. Does that mean the server push hack called Comet will be obsolete? Is there a reason why I should learn how to ...
24
votes
7answers
7k views

Is there a WebSocket client implemented for .NET?

I would like to use WebSockets in my Windows Forms or WPF-application. Is there a .NET-control that is supporting WebSockets implemented yet? Or is there any open source project started about it? An ...
23
votes
12answers
30k views

Do I need a server to use HTML5's WebSockets?

When using WebSockets, will I need to write server code? In other words, will the JavaScript in my client application need to connect to a specialized server, or will my existing Apache server work to ...
22
votes
2answers
8k views

Implementing webbased real time video chat using HTML5 websockets

Does anyone know how to implement voice/video over IP in a webapplication using HTML5 websockets? It would be nice if I could implement this with PHP or Python since I (unfortunately) don't know any ...
20
votes
1answer
799 views

Chrome & Safari revert to xhr-polling rather than websockets with socket.io

I have a problem with websockets and socket.io. When I try to connect to my node server with socket.io it initially connects using websockets but when reverts to jsonp-polling shortly after. This is ...
18
votes
2answers
5k views

node-websocket-server: possible to have multiple, separate “broadcasts” for a single node.js process?

I'd like to know if it's possible to broadcast on different websocket "connections" running from the same node-websocket-server app instance? Imagine a chatroom server with multiple rooms, only ...
16
votes
2answers
3k views

WebSockets vs. Server-Sent events/EventSource

Both WebSockets and Server-Sent Events are capable of pushing data to browsers. To me they seem to be competing technologies. What is the difference between them? When would you choose one over the ...
14
votes
4answers
5k views

Any success with Sinatra working together with EventMachine WebSockets?

I have been using Sinatra for sometime now and I would like to add some realtime features to my web-app by pushing the data via websockets. I have successfully used the gem 'em-websocket' on its own, ...
14
votes
5answers
7k views

What popular webservers have support for HTML5 WebSocket?

I would like to experiment with HTML5 WebSockets, and I am looking for a mature webserver with support for websockets. Is there a list of webservers that support websockets per default? What popular ...
13
votes
4answers
7k views

HAProxy + WebSocket Disconnection

I am using HAProxy to send requests, on a subdomain, to a node.js app. I am unable to get WebSockets to work. So far I have only been able to get the client to establish a WebSocket connection but ...
13
votes
5answers
4k views

Will Android support WebSockets in an upcoming version?

If so, does anybody know which version it's scheduled to be supported in (in built-in Chrome Lite browser)? Also, is it currently supported on any of the alternative browsers for Android like FireFox ...
12
votes
4answers
9k views

Using WebSockets in a C# Web Application?

I know its possible to use WebSockets within C# using a console application running along side the web application but Im wondering if its possible to use the requests on the C# web application to ...
11
votes
1answer
1k views

Why isn't BOSH more popular, especially as an alternative to WebSockets and long-polling?

BOSH is... a transport protocol that emulates the semantics of a long-lived, bidirectional TCP connection between two entities (such as a client and a server) by efficiently using multiple ...
11
votes
4answers
3k views

Websockets with ASP.NET MVC / MVVM

Earlier today I came across Kaazing's WebSocket API for HTML5. Looks fantastic, but as I am only now researching WebSocket possibilities for real-time financial updating, I would like to hear some ...
11
votes
4answers
1k views

What is the disadvantage of using websocket/socket.io where ajax will do?

Similar questions have been asked before and they all reached the conclusion that AJAX will not become obsolete. But in what ways is ajax better than websockets? With socket.io, it's easy to fall ...
11
votes
6answers
2k views

Do websockets allow for p2p (browser to browser) communication?

To clarify when I ask about browser to browser communication I mean without a server in between forwarding message. I would like to implement something like this for a game. If p2p in websockets ...
11
votes
1answer
1k views

What is the fundamental difference between WebSockets and pure TCP?

I've read about WebSockets and I wonder why browser couldn't simply open trivial TCP connection and communicate with server like any other desktop application. And why this communication is possible ...
10
votes
5answers
432 views

Strategy Game Server Concept

I´m planning to create a WebGL-based, realtime strategy game, where players are able to play together. I´ll use Node.js to create the game server, and websockets for realtime connections. I´ve broken ...
10
votes
3answers
1k views

Android to node.js communication

I saw there are a couple of similar threads but i could not find my answer. I'm making and android app, an i want to use node as server for realtime communication. I really cannot get this to ...
10
votes
4answers
6k views

Best Ruby on Rails WebSocket tool [closed]

I started project in Rails 3 and I need to add notifications(like Facebook one). Best way would be using WebSocket for support devices like iPad, but I can't find any good tools to easy implement it ...
10
votes
5answers
8k views

Standalone C++ websocket server library

I'd like to create a websocket server within one of my C++ programs. Do any standalone C++ libraries exist for creating websockets or is the only option to get the WebKit or V8 sources and extract ...
9
votes
7answers
458 views

handshaking a SQL server with Javascript

I want to try, as a learning excersise, get my javascript to chat to sql. var ws = new WebSocket("ws://127.0.0.1:1433"); doesn't seem to be a blocked port, so it should in theory work. I am ...
9
votes
3answers
2k views

Making moves w/ websockets and python / django ( / twisted? )

The fun part of websockets is sending essentially unsolicited content from the server to the browser right? Well, I'm using django-websocket by Gregor Müllegger. It's a really wonderful early crack ...
9
votes
1answer
2k views

How to send cookies when connecting to socket.io via WebSockets?

Is there a way to easily pass an authentication cookie when handshaking a WebSocket connection to socket.io? I currently have to do it separately, like so: socket = new ...
9
votes
1answer
532 views

Why are WebSockets without Sec-WebSocket-Key1 insecure?

The old and superseded draft 75 of WebSocket specification doesn't specify HTTP request headers Sec-WebSocket-Key1 and Sec-WebSocket-Key2. Why does the latest draft include these, and what in terms of ...
8
votes
1answer
148 views

What are the possible ways to authenticate user when websocket connection is used?

Example scenario: Web based multi-user chat application through websocket connection. How can I ensure (or guarantee) that each connection in this application belongs to certain authenticated user and ...
8
votes
2answers
245 views

WebSockets performance

I'm thinking about implementing a HTML5 mmog where there is a fast running object involved. Players constantly alter the direction of that object by shooting at it. I thought about WebSockets etc. ...
8
votes
3answers
260 views

Why do operating systems limit file descriptors?

I ask this question after trying my best to research the best way to implement a message queue server. Why do operating systems put limits on the number of open file descriptors a process and the ...
8
votes
2answers
227 views

AMQP creating subscribing to queues dynamically

I am trying to build a simple chat application using AMQP, Websockets and Ruby. I understand that this may not be the best use-case to understand AMQP but I would like to understand where i am going ...
8
votes
3answers
616 views

Why does the server in a websocket request have to answer a challenge?

I'm reading the websocket specification and it says: Finally, the server has to prove to the client that it received the client's WebSocket handshake, so that the server doesn't accept ...
8
votes
5answers
940 views

How do you spawn an EventMachine “inside” a Rails app?

I've got a Rails application, and am looking to add some sort of WebSocket support to it. From various googling, it appears that the best Ruby based WebSocket solution is em-websocket running on ...
8
votes
6answers
5k views

HTML5 WebSockets Client for .NET

So, I found that amazing thing called HTML5 WebSockets, new API. That is still in DRAFT version, but quite well supported. Full-duplex bi-directional communication. I know how to use it via ...
8
votes
4answers
885 views

Difference between socket and websocket?

I'm building web app that needs to communicate with another application using socket connections. This is new territory for me, so want to be sure that sockets are different than websockets. It seems ...
8
votes
1answer
1k views

Alternative to WebSockets

I have been quite excited by the prospect of WebSockets. As I have built a few Desktop socket based games, and Web games in the past, I was keen to combine the two approaches to building multiplayer ...
8
votes
5answers
7k views

socket.io with express

i have a project and I'm using socket.io with express , so what i need (i tried) is broadcasting a message but from an express action. is this possible i don't know how to get a reference to send or ...
8
votes
1answer
2k views

How to debug Websockets?

I want to monitor the websocket traffic (like to see what version of the protocol the client/server is using) for debugging purposes. How would I go about doing this? Wireshark seems too low level for ...
8
votes
10answers
11k views

Will IE9 support WebGL and/or WebSockets?

Will IE9 support WebGL and/or WebSockets?
8
votes
4answers
7k views

WebSockets served by a Servlet Container

I was taking a look at WebSockets last week and made a few thoughts on how to implement the server side with the Java Servlet API. I didn't spend too much time, but ran into the following problems ...
8
votes
3answers
12k views

How to Use Sockets in JavaScript\HTML?

How to Use Sockets in JavaScript\HTML? May be using some cool HTML5 technics? Libs? Tutorials? Blog Articles?
7
votes
2answers
209 views

How to stream MP3 data via WebSockets with node.js and socket.io?

I have problems streaming MP3 data via WebSocket with node.js and socket.io. Everything seems to work but decodeAudioData doesn't play fair with me. This is my toy server: var app = ...
7
votes
1answer
327 views

Confused by Microsoft WebSockets namespaces

So far, in tutorials, blogs, and official documentation, I've seen: Microsoft.Web.WebSockets Obtained from NuGet The assembly is Microsoft.WebSockets, but the Namespace is Microsoft.Web.WebSockets ...
7
votes
3answers
261 views

Realtime web libraries - replace hookbox with socket.io or what?

I've got a couple projects that were built using hookbox to manage real-time message passing between web clients and servers. Hookbox was great -- it totally abstracted the transport layer, exposing ...

1 2 3 4 5 19