The tag has no wiki summary.

learn more… | top users | synonyms

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
0answers
8 views

How to set request.argument in sockjs-tornado?

How to set request.argument in sockjs-tornado? I just read the document and source about sockjs-tornado The First: ...
1
vote
0answers
67 views

Broadcasting message to all clients using Pika + sockjs-tornado

I'm new to realtime apps based on WebSockets, and stucked at one point. My app has following components: Simple Python script which is fired when some generic event occurs. It receives data and ...
-2
votes
0answers
81 views

Any Socket.io or Sockjs client library for java? Any other alternatives? [closed]

This is for a desktop Java app that receives constants updates from a remote backend. I'm currently using the Async-http-client library to do this through websockets, but I need a more robust solution ...
0
votes
0answers
67 views

Can I establish a webRTC signaling channel using sockjs in a Meteor app?

I've read Meteor uses sockjs, and I can see in my Meteor applications SockJS is accessible from the console. I'm wondering if/how it might be possible to create the connection for webRTC communication ...
0
votes
1answer
56 views

Using chrome frame instead of SockJS

I'm creating web application using Go programming language. In my project I need to support IE>=8, Firefox >=13 Opera >=12 ... A part of the project rely on realtime push notification. Go doesn't ...
0
votes
1answer
31 views

sockjs - example of implementing rooms

I would like to have users create and join a "rooms" so that they can collaborate. I'm looking at SockJs Multiplexer server and wondering if I can leverage some of that to create and broadcast to ...
0
votes
0answers
27 views

How To Create Auto Delete Queue In Rabbitmq Using Sockjs-Stomp

i am not able to create auto delete queue through sockjs it create durable queue but not delete the queue after a few minute if it is not used. this feature available in rabbitmq but not supported in ...
0
votes
0answers
61 views

Efficient way to broadcast from sockjs-node?

I'd like to broadcast messages to all clients connected to my sockjs-node server. Right now I have the following code var clients = {}; var echo = sockjs.createServer(); echo.on('connection', ...
0
votes
0answers
46 views

SockJs - error trying to create an unsecure websocket connection from secure page

Trying to connect to SockJs server. I am running the following code from a secure https page https://localhost/index.php var sockjs_url = 'http://localhost:9999/echo'; var sockjs = new ...
0
votes
2answers
51 views

SockJS multiplexing example 404 index.html not found

Looking at SockJS multiplex example I got the server running. When I go to http://127.0.0.1:9999/multiplex I see a welcome message "Welcome to SockJS!" When I try to browser to index.hmtl ...
1
vote
1answer
102 views

What are issues with using WebSockets with proxies and load balancers?

I'm reading up on SockJS node server. Documentation says: Often WebSockets don't play nicely with proxies and load balancers. Deploying a SockJS server behind Nginx or Apache could be painful. ...
0
votes
1answer
50 views

SockJs - 'info' path not found

I'm running an example of SockJS. Ran npm install (everything okay) Start server with no problem. When I first load the test page, I see that there was a failed 404 call ...
0
votes
0answers
77 views

SockJS chat application using Redis PubSub

I am writing chat application using SockJS and Redis PubSub model. Chat is for 1vs1 conversations. Currently I am thinking about doing this like that: SockJSConnection appears, retrives information ...
0
votes
1answer
82 views

Is SockJS EventBus Bridge a right tool for building private chats?

I would like to build a app with private chat powered by SockJS using Vert.X. I quickly ran into limitation of SockJS because of it's simplistic API and multiplexing doesn't seem to be the answer ...
1
vote
1answer
115 views

mongoDB + nodeJS: can't keep a stream cursor open

For a log viewer, I have to write the updates in a mongoDB collection on a sockJS socket. Based on this post, I'm using the stream cursor of the native nodeJS driver to do so, but it only works for ...
1
vote
2answers
167 views

Does socket.io have raw WebSocket access like sockjs?

Sockjs and socket.io are both JavaScript libraries for node.js that automatically choose which transport protocol can be used on top of HTTP. I know that sockjs also provides a direct WebSocket ...
1
vote
1answer
86 views

SockJS using invalid URL for WebSockets

Using both the 0.3 and development versions of SockJS, I have tried to run the echo server/client demos, and on the client it falls back to XHR streaming with the following error in the console: ...
0
votes
1answer
247 views

Chat application: Using Django with sockjs-tornado and redis

I am trying to write chat application, here are some desing thoughts: Django doing main website serving. Sockjs-tornado serves chat and between them I would like to setup redis. When sockjs-tornado ...
1
vote
0answers
52 views

Get a headervalue of a websocket request using twisted and sockjs

I have a sockjs server which is behind haproxy. Now i need to now a clients ip address but using self.transport.getPeer() i get the ip of my haproxy. Haproxy adds a X-Forward-For header to the request ...
0
votes
0answers
66 views

SockJS connection dies silently

I knw this is a old question... But i cudnt find the exact answer... So please help me... Im using SockJS connection, when connection is made the sockJS connectionMade() function is called... But ...
0
votes
0answers
47 views

DNode implementation for websocket communication in node.js

I don't understand the way DNode uses websocket communication. Some say it uses socket.io others say sockjs. Which one is it? Or is it possible to choose? I'm trying to use DNode, but I also need ...
0
votes
2answers
92 views

Best way to speedup websockets

i write node.js application with websockets based on sockjs and i need to make minimal update time on client. Events in application occur every Nms (e.g. 20ms) and i need make broadcast changes to ...
1
vote
0answers
359 views

websocket, socket,io, sockjs, meteor…confused about how to make choices TODAY [closed]

I am about to make a decision for a collaborative editing application. I investigated about websockets, and frankly I am confused. Here my findings so far: There are loads of articles about ...
1
vote
1answer
121 views

What are the sockjs JSONP requests when loading a Meteor page, and how can I optimise the download speed?

The attached image is from http://www.webpagetest.org/. I am developing a real site, and it's taking ~10s to download. I then created a very basic site to see what was happening, and ran the speed ...
3
votes
2answers
239 views

Why is it taking so long for Meteor to load my data on Heroku?

I am using Meteor on Heroku (free tier) with MongoHQ. My app is very simple right now, it loads 3-4 entries from a Collection, but when I deploy it to Heroku, I am seeing ridiculous load times (1-2 ...
0
votes
1answer
98 views

IOError handling on Sockjs-Tornado

I develop instant messaging application based on sockjs-tornado chat sample. My code is asynchronous. Having this stack trace: ERROR:root:Exception in callback ...
0
votes
1answer
161 views

Tornado as Game engine and backend

I am going to build a simple monopoly game in realtime. Game constraints: 3-8 people in one game Realtime switching between players Scores and other stat Start pos and Finish pos Receiving answer ...
0
votes
1answer
316 views

Android phonegap and SockJS

Is there any way to get Android working with SockJs for socket connections in an app packaged in Phonegap? At the moment I have the following code that works on iOS but fails in Android because of the ...
0
votes
1answer
234 views

tornado-sockjs, how to set session id from client?

I want to create realtime application and i want to send realtime updates only for specific users (for example my friends). I have list of friend ids and my own id on client side. As I understand, I ...
1
vote
1answer
146 views

What is the maximal size for SockJS messages?

I'm using Vert.x and SockJS to transfer data encapsulated in messages. Is there a specification how big the SockJS/Websocket messages can be?
0
votes
1answer
94 views

as sockjs brukva use async server and clients to identify and respond indibidual

I am building a realtime web application. I want just to connect the client, identify and send a different message to each from the server, using sockjs What we achieved so far is connect from the ...
0
votes
4answers
157 views

Can two different browsers on the same machine connect to a server both using websocket?

I have two different browsers (Chrome and Safari) on the same machine (i.e. same IP), and wonder if it is possible to connect them to the same server both using websocket? I've tried. Chrome connects ...
1
vote
1answer
361 views

SockJS having problems with IE9

I saw a report of similar failure here: https://groups.google.com/forum/?fromgroups=#!topic/sockjs/QNtA1_p_arU, but my problem seems to be different. My setup: clients connects to ...
2
votes
1answer
203 views

Sockjs-tornado and rpc

I'm trying to add a sockjs-tornado server to my site, and all worked fine until I decided to connect it to my other apps via MsgPack (using msgpack-rpc-python). And now works sockjs server either RPC ...
1
vote
1answer
53 views

Thunderpush monitoring

Thunderpush is a Tornado and SockJS based push service. It provides a Beaconpush (beaconpush.com) inspired HTTP API and client. I'm wondering how I can monitor usage statistics and performances
5
votes
3answers
742 views

Websocket handshake hangs with HAProxy

With the latest Chrome browser, I am trying to use sockjs client to communicate with a backend server which is behind haproxy. On my localhost (without haproxy in the middle), this is working fine - ...
0
votes
1answer
177 views

Linking with cowboy process which handles the websocket connection (cowboy, erlang)

I'm developing an erlang app which use both cowboy and sockjs and I wonder if is it possible to link with the cowboy process which handles the websocket connection? Right now process with gen_server ...
1
vote
1answer
290 views

Vertx SockJS server vs sockjs-tornado

I've been inspecting two similar solutions for supporting web sockets via sockJS using an independent Python server, and so far I found two solutions. I need to write a complex, scalable web socket ...
0
votes
1answer
259 views

How to make connection via SockJS (websocket) with NodeJS durable/persistent?

What is best solution to manage connection in NodeJS connected via SockJS (websocket) to be durable(do not disconnect) for some time during user reloads the page? Can I do that with session?
0
votes
1answer
437 views

JSON messages in SockJS-Tornado

In on_message() method of SockJS-Tornado library, I want to send JSON messages to clients: sometimes to specific clients using send() method, and sometimes to a group of clients using broadcast() ...
3
votes
1answer
354 views

Asynchronous calls from within sockjs-tornado methods

I am building a server on sockjs-tornado, and wonder how could one take advantage of tornado's asynchronous HTTP client -- or other asynchronous facilities for tornado such as asyncmongo, ...