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)

1
vote
1answer
16 views

Anyone successful in implementing a WebSocket Server for Android?

I'm trying to implement both the WebSocket Client and the WebSocket Server on the same Android device. Basically I have two Android apps that need to communicate. I've implemented a couple of test ...
2
votes
1answer
29 views

Sending multi-touch events over Websockets

I'm trying to encode the touch event object as JSON to send it over websockets, an error appears saying: Uncaught TypeError: Converting circular structure to JSON Error occurs when you have a ...
0
votes
0answers
22 views

Go Websocket Server & Python Autobahn Client Conflict

I have been successfully writing a Go (server) websocket 'chat' application based in this example code Both client and server work as expected. When I have come to implement a client using Python's ...
0
votes
0answers
37 views

Web sockets multiple requests

I'm trying to understand how web sockets work. I do have basic understanding that unlike AJAX in web sockets connection is always open which is convenient for real time applications. This is very ...
-4
votes
0answers
54 views

how do I generate events required for following task? [closed]

I want a car to move from one place to another. But the controlling of the car will be from one browser(say iPhone) to another desktop browser(say an iPad or mac). When I click a button on my ...
0
votes
0answers
10 views

How to get access to onclose event codes in Javascript onclose function?

I have this simple WebSocket problem <!DOCTYPE html> <meta charset="utf-8" /> <title>WebSocket Test</title> <script language="javascript" type="text/javascript"> ...
1
vote
0answers
21 views

Using Websocket in Pyramid using Python3

Is there a way to use Websockets in Pyramid using Python 3. I want to use it for live-updating tables when there are data changes on the server. I already thought of using long-polling, but I don't ...
0
votes
1answer
11 views

Jett Websockets can't connect to server

So I have correctly setup a jetty (eclipse based) server listening on 8080. (i put a little hello world html to test). So if I go to http://localhost:8080/index.html my html is displayed. Now I ...
0
votes
1answer
20 views

Best suitable app to build to learn HTML5's features [closed]

I want to learn all the new features HTML5 has to offer. So I want to build some webapp for that. Can you tell me what kind of a webapp should I create. Should I be creating a simple multiplayer game? ...
1
vote
0answers
23 views

XMPP vs. HTML5 Websocket?

We are making a website where we are trying to develop a chat application, we have already built one using Comet, however due to speed factors we decided to make one in XMPP. However, with HTML5 ...
-1
votes
0answers
15 views

best way to detect whether another person has edited the content on a page

I'm interested in adding the functionality for detecting changes in the content of a webpage (similar to how stackoverflow does it for added answers). I'd imagine that this is a websocket sol'n. We'd ...
0
votes
1answer
20 views

Socket.io keeps timing out on Heroku

This is the following code of my app.js: var port = process.env.PORT || 3000; var app = require('express').createServer(); var io = require('socket.io').listen(app); app.listen(port); ...
2
votes
0answers
20 views

Error handling during broadcasting message using WebSocketCollection object

I'm currently using .Net 4.5 websocket package to support websocket service on windows 2012 server. Using WebSocketCollection object I'm succesfully able to broadcast message to all the clients. ...
1
vote
2answers
44 views

Basic Play framework routing and web sockets example

I'm trying to learn how to use web sockets in Play 2.1, and I'm having trouble getting the web socket URL to work with my app's routing configuration. I started with a new Play application and the ...
1
vote
0answers
29 views

Model Binding a WebSocket Message in .NET

I've implemented a class which inherits from IHttpHandler and essentially calls the following upon a request. public void ProcessRequest(HttpContext context) { if (context.IsWebSocketRequest) ...
0
votes
1answer
16 views

WebSocket javascript client and python server. Retreiving garbage in output

I am trying to send string/text data from browser client to python server and simply print it out. I have fallowed several examples on the internet, and all are the same: by using (javascript) ...
0
votes
1answer
27 views

Chat Application using webSockets

I am trying to write a simple application like omegle.com using webSockets. my question is which language would it be the best to implements this? My options are : node.js PHP Python
0
votes
1answer
22 views

socket.io - socket.emit, socket.on, socket.send

Base from the official site of socket.io http://socket.io/#how-to-use, I cant find any terminologies. What are the difference between socket.emit , socket.on , and socket.end ? Can't find articles ...
0
votes
1answer
15 views

How to refuse websocket connections?

Is there any elegant way how to refuse incoming websocket connections when stopping tomcat in contextDestroyed? Thanx in advance.
0
votes
0answers
8 views

How to Using ASP.NET Session in SuperWebSocket

Is there have any functions to read ASP.NET Page.Session in SuperWebsocket 0.7 . I can get the SessionID but I can't read any thing which store in ASP.NET Page.Session.My IIS Server using SQLServer ...
2
votes
1answer
71 views

socket.io referring to localhost despite being set as a specfic IP

I'm trying to use web sockets to connect from a Google Chrome browser on my phone to a server running node.js and socket.io. Using the remote debugging tool in Google Chrome I get this error in the ...
1
vote
2answers
24 views

How reconnect from server to client

I'am able to detect when client disconnect from a server by this code: self._session.socket.on("close", function() { console.log("client disconnected"); } But how can I try reconnect to the ...
1
vote
0answers
21 views

What is better: WebSocket-Node or ws? And is there a standard interface for nodejs websockets?

I want to move away from socket.io to regular websockets to take advantage of the binary data transfers and get rid of the base64 encoding. There seem to be two main websocket libraries for nodejs, ...
0
votes
1answer
20 views

using socket.io with dojo MultipleDefine error

I am trying to develop a web app. I already have working code where socket.io is used to communicate between the server side and client side. Now, I want to write the interface using Dojo, but the ...
2
votes
0answers
24 views

Communicate with node.js from VB.NET

I have a node.js-app running on the same machine on port 8080 with different channels. The communication between my jQuery-site and my .NET endpoint works perfectly. My Site: <!doctype html> ...
0
votes
1answer
33 views

Can't connect Raspberry Pi server through WebSocket

There is a server running on a Raspberry Pi which, when authenticated by a String, sends me back Power Metering Info from Smart Plugs in my house every 30 seconds. This Server opens a socket on port ...
3
votes
2answers
45 views

Manage connections in Aleph (clojure) based on metadata

I've written a very simple broadcast/echo server that uses web sockets with clojure and aleph. I spent a lot of time looking through the aleph and lamina sources to get a decent, basic understand ...
0
votes
0answers
15 views

Secure Websockets with Client Certificate Authentication using Twisted

I would like to know if there is an option to implement secure websockets (wss://) and client certificate based authentication with twisted ? I followed the instructions on ...
3
votes
1answer
36 views

Why do WebSockets use a hash in handshake?

To open a Websocket, the client connects to a tcp socket on a server, and then starts a handshake. The client's handshake contains a base64 encoded key (Sec-WebScoket-Key). The server is supposed to ...
0
votes
1answer
29 views

Do web sockets still require repeated HTTP requests?

I'm trying to understand web sockets, but am currently having a hard time grasping every part of the process. On the client side, we've got the WebSocket object that opens up the connection to the ...
0
votes
1answer
28 views

How to setup secure web sockets in azure

How do you go about setting up secure web sockets in Azure? I currently have a web role using web sockets (using the Microsoft.Web.WebSockets package). I was unable to find any guides on how to do ...
2
votes
1answer
72 views

G-WAN persist request data in handler

Is it possible in a G-WAN handler to store information persistent to a request/connection (don't really know if "request" applies here)? To better illustrate what I mean, this is what I got now: ...
1
vote
2answers
36 views

Django user in tornado

I have been using the code below to get the django user in tornado: from django.conf import settings import django.contrib.auth import django.utils.importlib import tornado from tornado.options ...
0
votes
1answer
11 views

Delegated Authentication using websockets

I have googled "websocket delegated authentication" and the only interesting hit is (unsurprisingly) on stackoverflow: WebSockets authentication What I'd like to know is: how are you allowing ...
1
vote
0answers
8 views

JSON increases Float32Array buffer size many folds when sending through websocket

I got a strange experience. When I send data of this arraybuffer setting: var f32s = Float32Array(2048); for (var i = 0; i < f32s.length; i++) { f32s[i] = buffer[i]; // fill the array ...
0
votes
1answer
30 views

Does WSO2 ESB support web sockets?

My project needs to provide read and write access to data using web services (SOAP/JSON etc), but we also need the ability to serve real-time notifications of data changes to external users through ...
1
vote
1answer
48 views
+100

nginx as a proxy for NodeJS+socket.io: everything is OK except for big messages

As explained on nginx's website I've used these settings for my nginx to proxy websockets to a NodeJS server: location /socket.io/ { proxy_pass http://backend; proxy_http_version 1.1; ...
1
vote
2answers
32 views

Fast, non-ajax (I guess) updating information

I'm looking forward to know how they do this. They update their information on just a couple of ms and I see no AJAX requests on my firebug console. Here is the page: Económico As you can see on ...
1
vote
0answers
16 views

twisted websocket chatserver openid authentication

i have a python chatserver that uses twisted and autobahn websockets for connection. factory = MessageServerFactory("ws://localhost:9000", debug=debug, debugCodePaths=debug) factory.protocol = ...
0
votes
1answer
10 views

The way to stream html5 audio to the server by websocket

There are solutions for HTML5 to get audio stream by using <audio> or <video> tag. Can I have the step reverse? What if I stream to the server by using getUserMedia() and websocket? It ...
0
votes
0answers
45 views

R - websocket connection does not work

I seem to be in struggle with the websockets in R. I wanted to download the streaming data from the BitCoin exchange MtGox directly to R, but R cannot establish the connection. The websocket specs ...
0
votes
0answers
7 views

Would WebSockets work with IronJS?

I am wanting to use a javascript library that uses WebSockets to provide some cloud services. I came across IronJS as a way to execute JS within a .net app and was wondering if IronJS will support ...
-1
votes
1answer
19 views

Emit to a specific client with Sockets

I'm trying to make a little party system just for practice with sockets, I've come into a snag, basically my methodology for this party system will just be On page load, ask for username, populate ...
0
votes
0answers
31 views

exchange data with socket.io server from embedded system websockets cpp client

I'm unable to exchange data with a socket.io server from a native C++ WebSocket (www.websocket.org) client. Note that I do NOT want a solution based on Boost as I'm running the WebSocket client from ...
1
vote
1answer
33 views

Detect Live Server Side changes (Long Polling, Short Polling or Web Sockets)

Justification and Research I have a site that requires users to login in order to view. Whilst users are logged in, I would like to keep an eye on their user session. By this, I mean that I would ...
1
vote
0answers
65 views

Socket.io connecting to server but not establishing connecting with any service

So, I am trying to set up a socket.io thing for relaying chat and other messages back and forth on a page in my site, but I am having trouble getting it up and running. What happens is, I start my ...
0
votes
1answer
18 views

Can't access socket.io

this might be a bit of a silly question but it's something that i've been struggling to find the answer to and for some reason it doesn't seem to be evident from the tutorials and websites i have been ...
0
votes
2answers
50 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 ...
1
vote
1answer
30 views

Using websocket channel in GraniteDS Gravity

I am using GraniteDS Gravity for my messaging service. My application works fine when using data polling, however when I try to use websocket channel instead of data polling, messages could not reach ...
1
vote
3answers
120 views

GWAN Bidirectional Communication using websockets

Solved My solution for the read problem was to move the code to a handler, and there using HDL_AFTER_READ state to handle the websocket connection. After putting handshake to reply buffer, return 2 ...

1 2 3 4 5 60