Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I´m going crazy with socket.io! Documentation is so bad its simply not true.

I want to send a feedback to specific client over socket.io

My server side looks like this:

app.get('/upload', requiresLogin, function(request, response) {
    response.render('upload/index.jade');

                    io.sockets.on('connection', function (socket) {
                        console.log('SOCKET ID ' + socket.id);
                        io.sockets.socket(socket.id).emit('new', 'hello');
                    });

});

and the client side looks like this:

$(document).ready(function() {
    var socket = io.connect('http://localhost:80/socket.io/socket.io.js');
    socket.on('new', function (data) { 
        console.log(socket.id);
        console.log(data); 
        //$('#state').html(data.status);
    });
});

but the client does simply nothing. I have tried nearly everything. Can someone tell me what I am doing wrong please!!!! :(

share|improve this question

4 Answers

to send a message to a specific client save every one that connects to the server in an Object.

var socketio = require('socket.io');
var clients = {};
var io = socketio.listen(app);

io.sockets.on('connection', function (socket) {
  clients[socket.id] = socket;
});

then you can later do something like this:

var socket = clients[sId];
socket.emit('show', {});
share|improve this answer
that doesnt work. i have made a simple test: var soc; io.sockets.on('connection', function (socket) { soc = socket; }); outside from every rout. and than in my upload function i have used soc.emit('news', 'bla') nothing happens.... – vboy Aug 2 '11 at 16:00
as i said before: you can't send events while uploading a file. but this methods works and you can send messages to specific clients, when you have the corresponding id. – pkyeck Aug 2 '11 at 16:14
:-/ sorry i misunderstood you. so there is no way to trigger a message to a specific client from a route function? – vboy Aug 2 '11 at 19:58
yes, there is. you have to save all clients that connect to your server in the clients-object (see example) and when you have the socket-id, you can access the socket directly through the object. but you CAN'T do that while uploading... – pkyeck Aug 2 '11 at 20:27
how would you recommend managing the object(once a client disconnects its O(n) to find the dead socket)... :-\ – Leon Fedotov Nov 7 '12 at 14:15
show 1 more comment

2 things

1) You should really place your io.sockets.on(..) outside your app/update route to prevent adding multiple listeners for clients.

2) io.sockets.socket(id); should not be used, it should have been socket.emit('new', 'hello')

share|improve this answer
okay great, this was also a problem io.connect('localhost:80/socket.io/socket.io.js'); but what when i want to send messages during the upload? then I need to store the client ID and use io.sockets.socket(socket.id).emit('new', 'hello'); or not? – vboy Aug 2 '11 at 15:08
as far as i know the socket connection isn't disconnected while uploading a file via form. – pkyeck Aug 2 '11 at 15:23
okay great and the last question. is it possible die empty the message queue? when i reenter the view i receive all the old massages... – vboy Aug 2 '11 at 15:46
@vboy which message queue are you talking about? The message queue that socket.io maintains internally for messages that are not received by the client? – 3rdEden Aug 3 '11 at 14:50

A couple of ways to send feedback to a specific client over socket.io include:

  • As stated by pkyeck, save all clients to an Object, so you can send to these specific clients later in your route handlers, e.g.:

    var sessionsConnections = {};
    sio.on('connection', function (socket) {
      // do all the session stuff
      sessionsConnections[socket.handshake.sessionID] = socket;
    });
    
  • or, use socket.io's built in support for rooms - subscribe each client to a room on connection and send via this room within route handlers, e.g.:

    sio.on('connection', function (socket) {
      // do all the session stuff
      socket.join(socket.handshake.sessionID);
      // socket.io will leave the room upon disconnect
    });
    
    app.get('/', function (req, res) {
      sio.sockets.in(req.sessionID).send('Man, good to see you back!');
    });
    

Acknowledgement:

http://www.danielbaulig.de/socket-ioexpress/#comment-1158

Note that both these example solutions assume that socket.io and express have been configured to use the same session store and hence refer to the same session objects. See the links above and below for more details on achieving this:

https://github.com/LearnBoost/socket.io/wiki/Authorizing

share|improve this answer
Just want to say that using the session id as a room was a great suggestion. Helped me solve a problem I was having, so thanks :) – Jason L. Dec 5 '12 at 15:31

First of all, you cannot use socket.id on client side.

And then change the line

var socket = io.connect('http://localhost:80/socket.io/socket.io.js');

to

var socket = io.connect('http://localhost:80/');

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.